Upload Button Icon Add office photos

Filter interviews by

Ittiam Systems Engineer Interview Questions and Answers

Updated 25 Jul 2024

Ittiam Systems Engineer Interview Experiences

4 interviews found

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:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
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 & 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:
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. 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

asked in Eaton
Q1. ❖ If a team member is unable to carry out his work, he is doing i ... read more
Q2. What is inheritance? Show me by a code that shouldn't be a pseudo ... read more
asked in Qualcomm
Q3. What is Min-Cut placement algorithm? Given some block sizes, use ... read more
Q4. What is neutonian fluid ? , Stages of fracture, working of engine ... read more
Q5. What is normalization? What do you mean by 1NF, 2NF, 3NF, 4NF?

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 & 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

Ittiam Systems interview questions for designations

 Software Engineer

 (7)

 Junior Engineer

 (1)

 Devops Engineer

 (1)

 Softwaretest Engineer

 (1)

Engineer Jobs at Ittiam Systems

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2023. There were 4 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Write a java program to return the prime number for a given range?
  • Ans. 

    Java program to return prime numbers in a given range

    • Iterate through the given range and check if each number is prime

    • A prime number is a number that is only divisible by 1 and itself

    • Use a nested loop to check for divisibility by numbers less than the current number

  • Answered by AI
  • Q2. How to achieve synchronisation in selenium?
  • Ans. 

    Synchronization in Selenium ensures that the automation script waits for the web page to load completely before performing actions.

    • Use implicit wait to wait for a certain amount of time before throwing an exception

    • Use explicit wait to wait for a specific condition to be met before proceeding

    • Use fluent wait to wait for a specific condition with a polling frequency

  • Answered by AI
  • Q3. Difference between driver.close() and driver.quit()
  • Ans. 

    driver.close() closes the current window, while driver.quit() closes all windows and ends the WebDriver session.

    • driver.close() closes the current window or tab in the browser.

    • driver.quit() closes all windows and tabs opened by the WebDriver and ends the WebDriver session.

    • driver.close() is used when you want to close a specific window, while driver.quit() is used when you want to close the entire browser session.

  • Answered by AI
  • Q4. Difference between soap and rest api ?
  • Ans. 

    SOAP is a protocol, while REST is an architectural style for APIs.

    • SOAP is a protocol that uses XML for messaging and operates over HTTP, SMTP, etc.

    • REST is an architectural style that uses standard HTTP methods like GET, POST, PUT, DELETE.

    • SOAP is more rigid and requires more bandwidth, while REST is lightweight and flexible.

    • SOAP has built-in security features like WS-Security, while REST relies on external security meas...

  • Answered by AI
  • Q5. What are the different http methods? Explain each one of them!
  • Ans. 

    HTTP methods are used to indicate the desired action to be performed on a resource.

    • GET - Retrieve data from a server

    • POST - Send data to a server to create/update a resource

    • PUT - Update a resource on the server

    • DELETE - Remove a resource from the server

    • PATCH - Update a resource partially

    • OPTIONS - Get information about the communication options available for a resource

    • HEAD - Retrieve headers from a server without the body

  • Answered by AI
Round 2 - Coding Test 

There were 2 coding question on the hacker rank platform , questions were easy , both were string and java related issue problem of DSA

Round 3 - Technical 

(3 Questions)

  • Q1. Write a java program to count the triplet in a given array ?
  • Ans. 

    Java program to count triplets in a given array

    • Create a nested loop to iterate through all possible triplets in the array

    • Use a counter to keep track of the number of triplets that satisfy the condition

    • Check if the sum of the triplet is equal to a given target value

  • Answered by AI
  • Q2. What are the different exceptions you have faced in selenium?
  • Ans. 

    Some common exceptions in Selenium include NoSuchElementException, ElementNotVisibleException, TimeoutException, StaleElementReferenceException.

    • NoSuchElementException occurs when an element could not be found in the DOM.

    • ElementNotVisibleException occurs when an element is present in the DOM but not visible on the page.

    • TimeoutException occurs when a command does not complete in the specified time.

    • StaleElementReferenceEx...

  • Answered by AI
  • Q3. What is json schema?
  • Ans. 

    JSON Schema is a vocabulary that allows you to annotate and validate JSON documents.

    • JSON Schema defines the structure of JSON data

    • It provides clear guidelines on what data is allowed and how it should be structured

    • JSON Schema can be used to validate JSON data against a predefined schema

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. Why should we hire you ?
  • Ans. 

    I have a strong technical background, excellent problem-solving skills, and a proven track record of delivering successful software solutions.

    • Extensive experience in software development and consulting

    • Strong problem-solving skills

    • Proven track record of delivering successful software solutions

    • Excellent communication and teamwork abilities

  • Answered by AI
  • Q2. Where do you see yourself in next 5 years?
  • Ans. 

    In the next 5 years, I see myself growing into a senior software consultant role, leading projects and mentoring junior team members.

    • Continuing to enhance my technical skills and knowledge in software development

    • Taking on more responsibilities in project management and client interactions

    • Mentoring and guiding junior team members to help them grow in their careers

    • Possibly pursuing certifications or advanced degrees to f...

  • Answered by AI
  • Q3. What is your strength and weaknesses?
  • Ans. 

    Strength: Strong problem-solving skills. Weakness: Sometimes too detail-oriented.

    • Strength: Ability to quickly analyze complex problems and find effective solutions

    • Weakness: Can get caught up in minor details and lose sight of the bigger picture

    • Strength: Strong communication skills to explain technical concepts to non-technical stakeholders

    • Weakness: Difficulty delegating tasks and trusting others to complete them

    • Strengt...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Knoldus Inc Software Consultant interview:
  • Java
  • Selenium
  • Postman
  • Api testing
Interview preparation tips for other job seekers - Prepare well , focus on basics of ui automation and api automation.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude question, Coding question

Round 2 - Technical 

(1 Question)

  • Q1. Java stream apis
Round 3 - HR 

(1 Question)

  • Q1. HR Discussion related to work culture

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops questions
Round 1 - Coding Test 

Hard level of coding

Round 2 - Technical 

(2 Questions)

  • Q1. Ds algo and oops concepts
  • Q2. Machine learning algorithms
  • Ans. 

    Machine learning algorithms are used to train models to make predictions or decisions based on data.

    • Machine learning algorithms can be supervised, unsupervised, or semi-supervised

    • Examples of machine learning algorithms include linear regression, decision trees, and neural networks

    • Machine learning algorithms require large amounts of data to train and improve accuracy

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mainly focus on ds algo and oops concepts

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Core java basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Core java basic question
Spring boot, DI
Basic knowledge of mockito framework

I applied via Naukri.com and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Coding ques from array and list

Round 2 - Technical 

(1 Question)

  • Q1. Easy collection ques in java
Round 3 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Why are you looking for a change?
  • Q4. Where do you see yourself in 5 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with java and DSA so that it would be easy to crack. As an experience guy have some domain knowledge.

I applied via campus placement at Jaypee University of Information Technology, Solan and was interviewed before Mar 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Java Garbage Collector functioning
  • Ans. 

    Java Garbage Collector automatically manages memory allocation and deallocation.

    • Garbage Collector runs in the background and frees up memory by removing objects that are no longer in use.

    • It uses different algorithms like Mark and Sweep, Copying, and Generational to manage memory.

    • Java provides methods like System.gc() and Runtime.getRuntime().gc() to request garbage collection.

    • Garbage Collector can cause performance iss...

  • Answered by AI
  • Q2. OOPs related concepts
  • Q3. Two Medium level programming questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and share your thoughts and ideas freely. Explain your approach to the problem.

Skills evaluated in this interview

Ittiam Systems Interview FAQs

How many rounds are there in Ittiam Systems Engineer interview?
Ittiam Systems interview process usually has 3 rounds. The most common rounds in the Ittiam Systems interview process are Technical and Resume Shortlist.
How to prepare for Ittiam Systems Engineer 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 Agile Coaching, Android, Application Development, C++ and Debugging.
What are the top questions asked in Ittiam Systems Engineer interview?

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

  1. Data structures Algorithm Puzzles Security vulnerability Memory mapp...read more
  2. OOPS C and C++ Code analysis (debuggi...read more

Tell us how to improve this page.

Ittiam Systems Engineer Interview Process

based on 3 interviews

Interview experience

3
  
Average
View more

Engineer Interview Questions from Similar Companies

TCS Engineer Interview Questions
3.7
 • 21 Interviews
Wipro Engineer Interview Questions
3.7
 • 4 Interviews
View all
Ittiam Systems Engineer Salary
based on 11 salaries
₹9.2 L/yr - ₹18 L/yr
153% more than the average Engineer Salary in India
View more details

Ittiam Systems Engineer Reviews and Ratings

based on 2 reviews

2.6/5

Rating in categories

2.6

Skill development

2.6

Work-life balance

3.8

Salary

2.2

Job security

2.6

Company culture

2.6

Promotions

2.2

Work satisfaction

Explore 2 Reviews and Ratings
Engineer, Video Codecs

Bangalore / Bengaluru

2-5 Yrs

Not Disclosed

Explore more jobs
Senior Engineer
28 salaries
unlock blur

₹11.6 L/yr - ₹26 L/yr

Software Engineer
23 salaries
unlock blur

₹9.3 L/yr - ₹19.5 L/yr

Software Development Engineer
17 salaries
unlock blur

₹10.4 L/yr - ₹17 L/yr

Engineer
11 salaries
unlock blur

₹9.2 L/yr - ₹18 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹13.4 L/yr - ₹27 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