AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Ittiam Systems

Compare button icon Compare button icon Compare
3.3

based on 21 Reviews

Play video Play video Video summary
  • About
  • Reviews
    21
  • Salaries
    219
  • Interviews
    15
  • Jobs
    2
  • Benefits
    2
  • Photos
    -

Filter interviews by

Ittiam Systems Interview Questions and Answers

Updated 16 Jun 2025
Popular Designations

21 Interview questions

An Engineer was asked 6d ago
Q. Given an array of integers, rearrange the array such that all negative numbers appear before all positive numbers without using any sorting algorithm.
Ans. 

Separate positive and negative numbers in an array without sorting them.

  • Use two pointers: one for positive and one for negative numbers.

  • Iterate through the array and place negative numbers at the beginning.

  • Example: For array [-1, 2, -3, 4], result should be [-1, -3, 2, 4].

  • Maintain the order of appearance for both positive and negative numbers.

View all Engineer interview questions
A Softwaretest Engineer was asked 9mo ago
Q. What is an 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, lea...

View all Softwaretest Engineer interview questions
A Devops Engineer was asked
Q. Write an algorithm to reverse a string.
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

View all Devops Engineer interview questions
A Software Engineer was asked
Q. Given numbers in range 1 to PHONE_NUMBER, find the minimum number such that the product of its digits modulo PHONE_NUMBER is equal to itself.
Ans. 

Find the minimum number whose product of digits modulo 1000000007 is equal to itself.

  • Iterate through numbers from 1 to 1000000006

  • Calculate the product of digits modulo 1000000007 for each number

  • If the product is equal to the number, return the number as the minimum

  • If no such number is found, return -1

View all Software Engineer interview questions
A Software Engineer was asked
Q. Can you increment a void pointer?
Ans. 

No, incrementing a void pointer is not allowed.

  • Void pointers do not have a data type, so incrementing them is not possible.

  • Attempting to increment a void pointer will result in a compilation error.

  • To increment a pointer, it must be of a specific data type.

View all Software Engineer interview questions
A Software Engineer was asked
Q. Implement memcpy in C.
Ans. 

Implementing memcopy in C

  • Use a loop to copy each byte from the source to the destination

  • Handle overlapping memory regions correctly

  • Return a pointer to the destination

  • Ensure proper null termination for string copies

View all Software Engineer interview questions
A Software Engineer was asked
Q. Write a program to invert all bits from the leftmost set bit in an integer.
Ans. 

Program to invert all bits from the leftmost set bit in an integer

  • Find the leftmost set bit using bitwise operations

  • Create a mask with all bits set to 1 from the leftmost set bit

  • XOR the mask with the integer to invert all bits from the leftmost set bit

  • Repeat the above steps until all bits are inverted

View all Software Engineer interview questions
Are these interview questions helpful?
A Software Engineer was asked
Q. Write a program to invert the case of the last letter in each word of a sentence.
Ans. 

Program to invert the case of the last letter in each word of a sentence

  • Split the sentence into an array of words

  • Loop through each word and get the last letter

  • Invert the case of the last letter using toUpperCase() and toLowerCase()

  • Replace the last letter in the word with the inverted case letter

  • Join the array of words back into a sentence

View all Software Engineer interview questions
A Software Engineer was asked
Q. Write a program to find the number of trailing zeros in a factorial.
Ans. 

Program to find the number of trailing zeros in a factorial

  • Count the number of 5s in the factorial

  • Divide the number by 5 and add the quotient to the answer

  • Repeat until quotient is less than 5

View all Software Engineer interview questions
A Software Engineer was asked
Q. Design a data structure for a dictionary.
Ans. 

Design a data structure for dictionary

  • Use hash table or trie data structure

  • Each key maps to a value

  • Keys should be unique

  • Support operations like insert, delete, search

View all Software Engineer interview questions
1 2 3

Ittiam Systems Interview Experiences

15 interviews found

Softwaretest Engineer Interview Questions & Answers

user image Anonymous

posted on 22 Sep 2024

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
    Add your answer
  • Q2. Questions on bit manipulations
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - be confiudent

Skills evaluated in this interview

Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 12 Dec 2024

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
  • Add your answer
Anonymous

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)
  • Add your answer
Round 3 - Technical 

(1 Question)

  • Q1. Data structures Algorithm Puzzles Security vulnerability Memory mapping
  • Add your answer

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.
Anonymous

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)
  • Add your answer
Round 3 - Technical 

(1 Question)

  • Q1. Data structures Algorithm Puzzles Security vulnerability Memory mapping
  • Add your answer

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.
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 26 Sep 2023

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:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Technology mentioned on resume, Coding questions
  • Add your answer
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?
  • Add your answer
Anonymous

Engineer Interview Questions & Answers

user image Pratiksha Hegde

posted on 16 Jun 2025

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Separate negative and positive numbers without sorting
  • Ans. 

    Separate positive and negative numbers in an array without sorting them.

    • Use two pointers: one for positive and one for negative numbers.

    • Iterate through the array and place negative numbers at the beginning.

    • Example: For array [-1, 2, -3, 4], result should be [-1, -3, 2, 4].

    • Maintain the order of appearance for both positive and negative numbers.

  • Answered by AI
    Add your answer
  • Q2. Basic questions on trees
  • Add your answer
Anonymous

Devops Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Oct 2022

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
  • Add your answer
  • 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
    Add your answer

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

Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 24 Mar 2018

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.
  • Add your answer
  • 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
    Add your answer
  • 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...
  • Add your answer
  • 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...
  • Add your answer
  • 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...
  • Add your answer
  • 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...
  • Add your answer

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
Anonymous

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
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 5 Mar 2015

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.
Anonymous

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Ittiam Systems?
Ask anonymously on communities.
More about working at Ittiam Systems
  • HQ - Bangalore,Karnataka, India
  • IT Services & Consulting
  • 51-200 Employees (India)
  • Internet
  • Software Product

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 Interviews By Designations

  • Ittiam Systems Software Engineer Interview Questions
  • Ittiam Systems Engineer Interview Questions
  • Ittiam Systems Softwaretest Engineer Interview Questions
  • Ittiam Systems Devops Engineer Interview Questions
  • Ittiam Systems Junior Engineer Interview Questions

Interview Questions for Popular Designations

  • Software Engineer Interview Questions
  • Engineer Interview Questions
  • Associate Interview Questions
  • Executive Interview Questions
  • Team Lead Interview Questions
  • Sales Executive Interview Questions
  • Senior Software Engineer Interview Questions
  • Manager Interview Questions
  • Show more
  • Assistant Manager Interview Questions
  • HR Executive Interview Questions

Overall Interview Experience Rating

3.5/5

based on 8 interview experiences

Difficulty level

Easy 40%
Moderate 60%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Apmosys Technologies
Apmosys Technologies Interview Questions
3.4
 • 51 Interviews
NexTurn
NexTurn Interview Questions
4.1
 • 34 Interviews
Thinkitive Technologies
Thinkitive Technologies Interview Questions
3.4
 • 29 Interviews
Geekyants Software
Geekyants Software Interview Questions
3.4
 • 28 Interviews
Zebra Technologies
Zebra Technologies Interview Questions
3.9
 • 26 Interviews
Zazz IT Solutions
Zazz IT Solutions Interview Questions
4.1
 • 26 Interviews
ClaySys
ClaySys Interview Questions
2.9
 • 26 Interviews
Contus
Contus Interview Questions
4.2
 • 24 Interviews
Pitney Bowes
Pitney Bowes Interview Questions
3.8
 • 22 Interviews
DynPro
DynPro Interview Questions
3.8
 • 22 Interviews
View all

Ittiam Systems Reviews and Ratings

based on 21 reviews

3.3/5

Rating in categories

3.0

Skill development

3.2

Work-life balance

3.4

Salary

3.4

Job security

3.2

Company culture

3.5

Promotions

2.9

Work satisfaction

Explore 21 Reviews and Ratings
Jobs at Ittiam Systems
Ittiam Systems
Engineer, Video Codecs

Bangalore / Bengaluru

2-5 Yrs

Not Disclosed

Ittiam Systems
Engineer Software Development

Bangalore / Bengaluru

2-4 Yrs

Not Disclosed

Explore more jobs
Ittiam Systems Salaries in India
Senior Engineer
29 salaries
unlock blur

₹11.6 L/yr - ₹28 L/yr

Software Engineer
25 salaries
unlock blur

₹9.3 L/yr - ₹23 L/yr

Senior Software Engineer
16 salaries
unlock blur

₹22 L/yr - ₹30 L/yr

Software Development Engineer
14 salaries
unlock blur

₹12 L/yr - ₹20.5 L/yr

Engineer
11 salaries
unlock blur

₹9.2 L/yr - ₹20 L/yr

Explore more salaries
Compare Ittiam Systems with
Accel Frontline

Accel Frontline

4.1
Compare
Apmosys Technologies

Apmosys Technologies

3.4
Compare
Pitney Bowes

Pitney Bowes

3.8
Compare
DynPro

DynPro

3.8
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Ittiam Systems Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter