Upload Button Icon Add office photos

Filter interviews by

Infineon Technologies R&D Engineer Interview Questions and Answers

Updated 10 Mar 2022

Infineon Technologies R&D Engineer Interview Experiences

1 interview found

R&D Engineer Interview Questions & Answers

user image Kaustubh Deore

posted on 10 Mar 2022

I applied via Campus Placement and was interviewed in Feb 2022. There were 3 interview rounds.

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 - Aptitude Test 

There were total 10 sections including Aptitude, C++, Java, Python, DSA, OS, Embedded C, ML, Web development, C sharp. Total of 90 MCQ's in 120 mins, no negative marking.

Round 3 - One-on-one 

(1 Question)

  • Q1. Total 5 interactions with 5 different people. Round 1. 2 DSA questions and Project discussion from resume. Round 2. 2 DSA questions, questions on OOP with code writing, 1 Puzzle. Round 3. Questions on C, ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Have fundamentals at tip of fingers, Solve at least 200 Medium level DSA questions on LC. Read OS, OOP, Networks, DBMS.

Rock it!!!

Interview questions from similar companies

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

I applied via campus placement at National Institute of Technology (NIT), Kurukshetra and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basic questions on oops and dsa pointers

Round 2 - One-on-one 

(2 Questions)

  • Q1. Coding questions
  • Q2. String Question

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for basic concepts in c language.
analytics aptitude and fundamental of electronics.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is ur project
  • Q2. Why intel and expected salaries ?
Round 2 - Coding Test 

C++ Java Python sql excel

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Find cycle in linked list
  • Ans. 

    Detecting cycles in a linked list using Floyd's Tortoise and Hare algorithm

    • Use two pointers - slow and fast

    • If there is a cycle, the two pointers will eventually meet

    • Time complexity is O(n) and space complexity is O(1)

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(3 Questions)

  • Q1. Opps concept and Linklist and tree are highly asked in Synopsys.
  • Q2. Reverse the linklist.
  • Ans. 

    To reverse a linked list, iterate through the list and change the direction of pointers.

    • Iterate through the linked list and keep track of the previous, current, and next nodes.

    • Update the pointers of each node to reverse the direction.

    • Set the head of the linked list to the last node encountered during iteration.

  • Answered by AI
  • Q3. Aptitude and Puzzle

Interview Preparation Tips

Interview preparation tips for other job seekers - In Synopsys there is two interview, mainly they focus on c++ core concepts.
Easy to medium level of DSA questions.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basics of digital design, verilog, and projects
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2022. There were 2 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 

(2 Questions)

  • Q1. Find leaves in a binary tree, left to right.
  • Ans. 

    Traverse the binary tree using a queue to find leaves from left to right.

    • Start by adding the root node to a queue

    • While the queue is not empty, dequeue a node and check if it is a leaf node (both children are null)

    • If it is a leaf node, add its value to the result array

    • If it is not a leaf node, enqueue its children in left to right order

  • Answered by AI
  • Q2. Bfs in binary tree
  • Ans. 

    Breadth-first search (BFS) is a traversal algorithm used to visit all nodes of a binary tree level by level.

    • Start at the root node and visit all nodes at the current level before moving to the next level.

    • Use a queue data structure to keep track of nodes to visit next.

    • Example: BFS traversal of a binary tree - 1 -> 2 -> 3 -> 4 -> 5

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - make sure to do easy-medium questions on trees, lists.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jul 2022. There were 4 interview rounds.

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. Html , Python , C++ theory and technical questions were asked.
Round 3 - Coding Test 

Coding questions on Python , html , C++ and data structure. Also about database and SQL query.

Round 4 - One-on-one 

(1 Question)

  • Q1. This was the managerial round in which technical questions were also asked

I applied via LinkedIn and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. The two sum problem, given an array find all the pair of integers which gives a unique sum.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on Data Structures and Algo.

I was interviewed in May 2019.

Interview Questionnaire 

5 Questions

  • Q1. 1st Round: Written Test which included aptitude section, programming section, hardware logic. Aptitude was of intermediate level, programming section had questions only about pointers.
  • Q2. 2nd Round: It was a technical round. Questions were about OOP concepts, some very basic programming questions, C++ questions.
  • Q3. 3rd Round: Technical + HR. Some programming questions to build the code. Asked questions about why Synopsys, any plans for higher studies, desired job location.
  • Q4. 4th Round: Techincal + Puzzle. The guy asked some puzzles and again some coding questions.
  • Q5. 5th Round: 1 tree question. Write the value of nodes level-wise.

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall experience is very disappointing from this company. There were about 7 candidates and the process took the whole day. In the end, other than me, there was one more candidate who gave the final round. It's been 2 months they haven't given the result (Though it's pretty clear).

At the end of the interview, they asked us to leave and said results will be declared within that week. But no response, so I sent a mail, they said the process is still going on. After 3 weeks I again sent the mail and to quote them, 'both of us were neither clear reject nor clear select'. So they were still deciding and gave me a very definite response that will let me know the final result by the end of the week. I did not get any response and did not even bother to follow up again.

Okay, firstly, there's nothing like this clear reject/select shit, the candidate is either ideal for the job or not. You people should give more credit to the candidates and have the courage to reject them. Recruiters need to be a little sensible while hiring. Rejection is not an issue but not getting a clear/firm response. So, please if you don't find a person suitable for the role, just tell them and help them move on. Else they'll keep thinking in the back of their mind that they might have a chance at this company.

Secondly, the Noida office is really depressing.

Infineon Technologies Interview FAQs

How many rounds are there in Infineon Technologies R&D Engineer interview?
Infineon Technologies interview process usually has 3 rounds. The most common rounds in the Infineon Technologies interview process are Resume Shortlist, Aptitude Test and One-on-one Round.
How to prepare for Infineon Technologies R&D 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 Infineon Technologies. The most common topics and skills that interviewers at Infineon Technologies expect are Budgeting, Management, Monitoring, PMP and Project Management.

Tell us how to improve this page.

Interview Questions from Similar Companies

Qualcomm Interview Questions
3.8
 • 273 Interviews
Intel Interview Questions
4.2
 • 222 Interviews
Texas Instruments Interview Questions
4.1
 • 124 Interviews
Synopsys Interview Questions
3.9
 • 88 Interviews
Molex Interview Questions
3.9
 • 53 Interviews
View all
Infineon Technologies R&D Engineer Salary
based on 4 salaries
₹15.9 L/yr - ₹19.9 L/yr
81% more than the average R&D Engineer Salary in India
View more details

Infineon Technologies R&D Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

4.0

Salary

5.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Staff Engineer
137 salaries
unlock blur

₹16 L/yr - ₹39 L/yr

Senior Staff Engineer
75 salaries
unlock blur

₹26.9 L/yr - ₹65 L/yr

Software Engineer
74 salaries
unlock blur

₹6.1 L/yr - ₹25 L/yr

Senior Software Engineer
54 salaries
unlock blur

₹13 L/yr - ₹30 L/yr

Senior Specialist
47 salaries
unlock blur

₹8 L/yr - ₹21 L/yr

Explore more salaries
Compare Infineon Technologies with

Texas Instruments

4.1
Compare

Analog Devices

4.1
Compare

STMicroelectronics

4.1
Compare

NXP Semiconductors

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