Upload Button Icon Add office photos

Filter interviews by

Ittiam Systems Interview Questions, Process, and Tips

Updated 12 Dec 2024

Top Ittiam Systems Interview Questions and Answers

View all 18 questions

Ittiam Systems Interview Experiences

Popular Designations

14 interviews found

Interview Questionnaire 

12 Questions

  • Q1. Reverse an array inplace. -4 input AND gate using 2 input AND gates.give 2 ways and compare both.how will you identify which is better if both are given in a black box. -swap elements without using temp,in...
  • Ans. 

    Questions on array manipulation and logic gates.

    • To reverse an array inplace, swap the first and last elements and continue swapping towards the middle.

    • To implement a -4 input AND gate using 2 input AND gates, use two 2-input AND gates and connect their outputs to a third 2-input AND gate.

    • To compare two black box implementations of an AND gate, test their output for all possible input combinations and compare the result...

  • Answered by AI
  • Q2. -AND gate using multiplexer
  • Ans. 

    AND gate can be implemented using a 2:1 multiplexer.

    • Connect both inputs of the AND gate to the select line of the multiplexer.

    • Connect one input of the multiplexer to 0 and the other input to the second input of the AND gate.

    • The output of the multiplexer is the output of the AND gate.

  • Answered by AI
  • Q3. -calculation of stack space used by a combination of functions and which used for storage of different data types
  • Ans. 

    To calculate stack space used by functions and data types, we need to consider their sizes and memory allocation.

    • Calculate the size of each data type used in the functions

    • Determine the number of variables declared in each function

    • Multiply the size of each variable by the number of times it is declared

    • Add up the total size of all variables in each function

    • Add the sizes of all functions together to get the total stack sp

  • Answered by AI
  • Q4. Threads and processes
  • Q5. Copyfunc(char* source,char* destination,int length) - write a copy function...give test cases
  • Q6. -if you have to AND n inputs,how many AND gates will be required? (I said n-1 and he asked me to prove it mathematically)
  • Ans. 

    To AND n inputs, n-1 AND gates are required.

    • Each input needs to be connected to an AND gate except for the last input which is connected to the output.

    • The output of each AND gate is connected to the input of the next AND gate.

    • This results in n-1 AND gates being required for n inputs.

  • Answered by AI
  • Q7. Func(char a,int bit_postion) - func shud reset the bit at position bit_position in char a and return character
  • Q8. What is stack? Where is it used? (i said function calls) What exactly happens in function calls?
  • Ans. 

    Stack is a data structure used to store and manage function calls.

    • Stack is a LIFO (Last In First Out) data structure.

    • It is used to store function calls, local variables, and return addresses.

    • Pushing onto the stack adds a new element to the top, popping removes the top element.

    • Stack overflow occurs when the stack size exceeds its limit.

    • Example: recursive function calls use the stack to store return addresses and local v

  • Answered by AI
  • Q9. Where do local variables go? Why is stack used for function calls? Can you perform arithmetic operations directly on data stored in stacks?
  • Ans. 

    Local variables go on the stack. Stack is used for function calls due to its LIFO nature. Arithmetic operations can be performed on stack data.

    • Local variables are stored on the stack frame of the function they are declared in.

    • Stack is used for function calls because it allows for easy management of function call frames in a LIFO manner.

    • Arithmetic operations can be performed on data stored in the stack by first popping ...

  • Answered by AI
  • Q10. You are given a 32 bit no. two bit positions say m and n are given. extract the pattern between m and n. e.g. 01100111110001011100100101011111 m=10,n=20; from m to n i have "...
  • Ans. 

    Extract a pattern between two given bit positions in a 32-bit number.

    • Convert the number to binary string.

    • Extract the substring between the given positions.

    • Convert the substring back to decimal if needed.

    • Handle edge cases like invalid positions or overlapping positions.

  • Answered by AI
  • Q11. Find the transpose of a 2*2 square matrix(in place)
  • Ans. 

    Transpose a 2*2 square matrix in place

    • Swap the elements at (0,1) and (1,0) indices

    • No need to swap elements at (0,0) and (1,1) indices

    • Example: [[1,2],[3,4]] -> [[1,3],[2,4]]

  • Answered by AI
  • Q12. -ittiam is just 10-11 yrs old,what do you know about it and why do you want to join it?
  • Ans. 

    Ittiam is a 10-11 year old software company.

    • Ittiam specializes in video and audio codecs.

    • It has a strong presence in the semiconductor industry.

    • It has partnerships with major players like Intel, Qualcomm, and Sony.

    • I want to join Ittiam because of its innovative work and growth potential.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience:
c,dlda,dsp......unsigned characters,function pointers,time and space used by different functions performing the same task and several unconventional things were asked.
:14 shortlisted after apti

Round: Technical Interview
Experience: a few questions to check your creativity(only 30 sec given to solve)viz...convert roman 9(IX) to six.
-mostly he spoke on what should i do......i came across as a very strong person who is very insecured and wants to do everything better than others...he made me realise that its not possible.no one has enough skills for that....enjoy your life.dont sulk and take too much pressure
do something because you like to do it and not for any competition(not even with yourself).
-
Tips: (dos and donts)
-common interview related questions definitely help.find them on internet.
-only c is sufficient but not the marks oriented c that we did in 1st sem.
-a completely different side of c where things we generally dont use or bother about is asked.
like unsigned nos,program stack space,function ptrs,etc.
its very important to clear apti first,which is COMPLETELY different from interviews and definitely more difficult.
do try to think loud during interviews and make them stop you if you r thinking in wrong direction.
-at the end,IT HAS TO BE YOUR DAY

College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]

Skills evaluated in this interview

Top Ittiam Systems Software Engineer Interview Questions and Answers

Q1. reverse an array inplace. -4 input AND gate using 2 input AND gates.give 2 ways and compare both.how will you identify which is better if both are given in a black box. -swap elements without using temp,in which case it wont work
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Generally quant based

Round 2 - Technical 

(2 Questions)

  • Q1. What is octa core processor
  • Ans. 

    An octa-core processor is a CPU that has eight cores, allowing it to handle multiple tasks simultaneously for improved performance.

    • An octa-core processor has eight processing cores, which can work together to execute tasks faster and more efficiently.

    • It is commonly found in high-end smartphones, tablets, and computers to provide better multitasking capabilities.

    • Each core can handle its own tasks independently, leading ...

  • Answered by AI
  • Q2. Questions on bit manipulations

Interview Preparation Tips

Interview preparation tips for other job seekers - be confiudent

Skills evaluated in this interview

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

C questions were asked

Round 2 - Technical 

(1 Question)

  • Q1. Ant triangle problem and dynamic programming knapsack

Top Ittiam Systems Software Engineer Interview Questions and Answers

Q1. reverse an array inplace. -4 input AND gate using 2 input AND gates.give 2 ways and compare both.how will you identify which is better if both are given in a black box. -swap elements without using temp,in which case it wont work
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

Engineer Interview Questions & Answers

user image Omkar Potadar

posted on 7 Sep 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Referral

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. OOPS C and C++ Code analysis (debugging)
Round 3 - Technical 

(1 Question)

  • Q1. Data structures Algorithm Puzzles Security vulnerability Memory mapping

Interview Preparation Tips

Interview preparation tips for other job seekers - Be conceptual. Just don't read have good coding skills and debugging skills and complete understanding of how the code works and logic building. And basics should be strong.

Engineer Interview Questions asked at other Companies

Q1. ❖ If a team member is unable to carry out his work, he is doing it repetitively, how would you handle it?, would you like to work only on lifing of components, or would you be ready to shift to other departments?
View answer (7)

Ittiam Systems interview questions for popular designations

 Software Engineer

 (6)

 Engineer

 (4)

 Softwaretest Engineer

 (1)

 Devops Engineer

 (1)

 Junior Engineer

 (1)

Engineer Interview Questions & Answers

user image Anonymous

posted on 7 Sep 2023

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Referral

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. OOPS C and C++ Code analysis (debugging)
Round 3 - Technical 

(1 Question)

  • Q1. Data structures Algorithm Puzzles Security vulnerability Memory mapping

Interview Preparation Tips

Interview preparation tips for other job seekers - Be conceptual. Just don't read have good coding skills and debugging skills and complete understanding of how the code works and logic building. And basics should be strong.

Engineer Interview Questions asked at other Companies

Q1. ❖ If a team member is unable to carry out his work, he is doing it repetitively, how would you handle it?, would you like to work only on lifing of components, or would you be ready to shift to other departments?
View answer (7)
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Technology mentioned on resume, Coding questions
Round 3 - HR 

(1 Question)

  • Q1. Generic HR question like why do you want to work here? why should we hire you? what is more important money or work?

Top Ittiam Systems Software Engineer Interview Questions and Answers

Q1. reverse an array inplace. -4 input AND gate using 2 input AND gates.give 2 ways and compare both.how will you identify which is better if both are given in a black box. -swap elements without using temp,in which case it wont work
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

Jobs at Ittiam Systems

View all

I applied via LinkedIn and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Basic questions verbal os apti

Round 3 - Technical 

(2 Questions)

  • Q1. Bacis of c DSA DBMS OS aray questions Tel me about your self What is volatile keyword What is data Difference between aray and DBMS
  • Q2. Reverse the string and write algorithm
  • Ans. 

    Algorithm to reverse a string

    • Create an empty string to store the reversed string

    • Loop through the original string from the end to the beginning

    • Add each character to the new string

    • Return the new string

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Ittiam Systems Devops Engineer interview:
  • C
  • DSA
Interview preparation tips for other job seekers - Be good in your Basics and whatever you add in ur resume

Skills evaluated in this interview

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the String Problem Statement You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string. Example: Input: STR = "abcde" Output: "edcba" Input: The first line of input cont... read more
View answer (3)

I applied via Campus Placement and was interviewed in Mar 2018. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Gave a form to fill up with HR questions in it.
  • Q2. HR - Why your pointer is so low? Me - (Pointer - 7.4, Eligibility criteria - 7) Sir, I am an active member of the college... HR - (Cutting in the middle, asking rudely) You came here for studies or for co-...
  • Ans. 

    The candidate explains their low pointer by highlighting their active involvement in co-curricular activities and their focus on overall development.

    • Active involvement in college co-curricular activities

    • Emphasis on overall development

    • Belief that knowledge is more important than grades

  • Answered by AI
  • Q3. HR - Why do you want to join ITTIAM? Me - Sir, as I have searched the web, and read the reviews about ITTIAM, one thing is mentioned in almost every review, that you will get the opportunity to learn there...
  • Q4. HR - (Now just only shouting at me) Who told you that this is a technical interview? This is just an interview, you just came here with an assumption. Me - You came here for the recruitment of technical po...
  • Q5. Me - Yes Sir, Many do the jobs of designing of protocols, they work on algorithms. HR - You don't know anything about networking, you just know the technology, you don't have deep knowledge. Technical Pers...
  • Q6. HR - (Nodded in disagreement) You know C/C++ right? (Looking at my resume)Can we ask him a quick question in which he won't take much time answering? (Asked the Technical Person) If he answers it correctly...

Interview Preparation Tips

General Tips: That's the worst interview experience anyone could have.
Extremely Rude HR with very unprofessional behaviour.
No screening called everybody for the interview, Whosoever filled the form

It is a startup from 2001 which have only 250 employees till 2018, don't join this company unless that's your only option. No growth in the company

Top Ittiam Systems Software Engineer Interview Questions and Answers

Q1. reverse an array inplace. -4 input AND gate using 2 input AND gates.give 2 ways and compare both.how will you identify which is better if both are given in a black box. -swap elements without using temp,in which case it wont work
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Jan 2015

Interview Preparation Tips

Round: Test
Experience: Questions asked in the test : Core
Tips: Preparations for the test : Study materials
Duration: 60 minutes

Round: Interview
Experience: HR was more elaborate than the technical.... They make sure the candidate has the right kind of attitude to work with them. It was more like psychological test.The HR interview is very unique.

Round: Interview
Tips: Good hold on subjects

Skill Tips: It will be good if you prepare well in all subjects which you may be expecting... I stuck to a single profile (my core area) so it was bit easier for me.
In wireless communication learn about OFDM,CDMA.
Skills: DSP, Digital Communications, Wireless Communication, C programming
College Name: IIT MADRAS

Engineer Interview Questions asked at other Companies

Q1. ❖ If a team member is unable to carry out his work, he is doing it repetitively, how would you handle it?, would you like to work only on lifing of components, or would you be ready to shift to other departments?
View answer (7)

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had a resume as per the standards laid down by our placement cell. The company did not look at the resume I had with me and it was just a formality.

Round: Test
Experience: The written test had questions on C programming. The topics from C were basically related to pointers, operators and functions. The paper also had questions from Digital Electronics. These were mostly from chips and registers. There was another section for Aptitude also in the test. There were questions from simple electronics as well but I had no idea about them. The duration of the test was around 1 hour.
Tips: For Written test i would recommend ‘C by Yashwant Kanetkar’ and the book by Salle Mahanand for Digital Electronics.

Round: Technical Interview
Experience: The first interview was a technical interview. The whole interview revolved around the concept of Bit wise operator which is a concept in C. They also asked me questions on Digital electronics which were mainly based on the layout of NAND, AND, OR Gates. They were not sure about my proficiency in C so they also asked me to code some simple problems in C. The technical interview lasted pretty long.

Round: HR Interview
Experience: The second round was an HR Interview. It was simply a formality for those who had performed well in the technical interview. They asked me general questions about the talk they had given as well as they enquired about me and my family background.
Tips: The company looks for people who are proficient in C. So, in depth knowledge of the language is needed before the interview.

College Name: SGSITS INDORE
Motivation: For ITTIAM solutions I read about the technology it works in which is embedded software, Smart Phones and Protection of IC. I also consulted my seniors and people who work in ITTIAM solution to get more insight about the company profile.

Top Ittiam Systems Software Engineer Interview Questions and Answers

Q1. reverse an array inplace. -4 input AND gate using 2 input AND gates.give 2 ways and compare both.how will you identify which is better if both are given in a black box. -swap elements without using temp,in which case it wont work
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Jan 2015

Interview Preparation Tips

Round: Test
Experience: Questions were mostly from the core subjects.
Duration: 60 minutes

Round: Interview
Experience: Technical round consisted of questions form topics like DSP, Digital Communications, Wireless, C programming.

Round: Interview
Experience: HR round more elaborate than the technical round. They make sure the candidate has the right kind of attitude to work with them. More like psychological test.

General Tips: Know in and out of the core subjects and have good hold on those subjects.
Always look confident and comfortable.
College Name: IIT MADRAS

Engineer Interview Questions asked at other Companies

Q1. ❖ If a team member is unable to carry out his work, he is doing it repetitively, how would you handle it?, would you like to work only on lifing of components, or would you be ready to shift to other departments?
View answer (7)

Ittiam Systems Interview FAQs

How many rounds are there in Ittiam Systems interview?
Ittiam Systems interview process usually has 2-3 rounds. The most common rounds in the Ittiam Systems interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Ittiam Systems interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Ittiam Systems. The most common topics and skills that interviewers at Ittiam Systems expect are Android, C++, Configuration management, Linux and Application Development.
What are the top questions asked in Ittiam Systems interview?

Some of the top questions asked at the Ittiam Systems interview -

  1. reverse an array inplace. -4 input AND gate using 2 input AND gates.give 2 ways...read more
  2. you are given a 32 bit no. two bit positions say m and n are given. extract th...read more
  3. Where do local variables go? Why is stack used for function calls? Can you perf...read more

Tell us how to improve this page.

Ittiam Systems Interview Process

based on 7 interviews

Interview experience

3.6
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.7k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
Cyient Interview Questions
3.6
 • 285 Interviews
View all

Ittiam Systems Reviews and Ratings

based on 20 reviews

3.4/5

Rating in categories

3.2

Skill development

3.5

Work-life balance

3.5

Salary

3.6

Job security

3.6

Company culture

3.7

Promotions

3.0

Work satisfaction

Explore 20 Reviews and Ratings
Engineer, Video Codecs

Bangalore / Bengaluru

2-5 Yrs

Not Disclosed

Explore more jobs
Senior Engineer
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Ittiam Systems with

Wipro

3.7
Compare

TCS

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview