Upload Button Icon Add office photos

Infineon Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Infineon Technologies Senior Engineer Interview Questions and Answers

Updated 30 Nov 2022

Infineon Technologies Senior Engineer Interview Experiences

1 interview found

I applied via Approached by Company and was interviewed in May 2022. There were 5 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 - Technical 

(2 Questions)

  • Q1. As infineon is Produc based company and Every Person Responsible for complete Chip Testing instead on 1 specific Block. so Interview Asked Basic Tests like continuity, DPS short , Vil/Vih , Voh/Vih , Lekag...
  • Ans. Above all the Topics prepare clearly
  • Answered Anonymously
  • Q2. Basics of Tester Hardwares and why you join in INFIN ? Why want to Change the company ? Why should we we hire ? Tell me about any challenges faced in previous organisation and Work status ? Any protocol...
  • Ans. These are Main topics you should good before going to attend the interview
  • Answered Anonymously
Round 3 - Technical 

(1 Question)

  • Q1. Same as Previous Round but did by Manager in deep level on Basics and work
Round 4 - Behavioral 

(1 Question)

  • Q1. General Discussion about Works did in previous organisation and Basics
Round 5 - HR 

(1 Question)

  • Q1. General Discussion and Salary Negotiation

Interview Preparation Tips

Topics to prepare for Infineon Technologies Senior Engineer interview:
  • Java, Basics of Engineering
Interview preparation tips for other job seekers - Instead of preparing before interview Continuously Learn where ever you work that make you get confidence

Learn more skills that make your Resume more weight

Must and Should Revise and Review all the topics attached in Resume

If any One Call for scheduling Interview, ask for time min 2 Java and Max 1 week to Revise and Get ready with Full knowledge and confidence for interview.

Senior Engineer Jobs at Infineon Technologies

View all

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in May 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 

Easy questions were there in round 10 . . . . . . .

Round 3 - Technical 

(2 Questions)

  • Q1. Easy questions. . . . . . . . .
  • Q2. Everything from fundamentals.....

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep clam and listen to your brain. . . . . . .. . . .
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions about memory segments and compiler optimisations
  • Q2. Question about controller architecture
Round 2 - Technical 

(1 Question)

  • Q1. Question about memory allocation of variables from a code snippet

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Embedded software and hardware

Interview Preparation Tips

Interview preparation tips for other job seekers -

I applied via Company Website and was interviewed in Oct 2021. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Data structures
  • Q2. Os theory related questions
  • Q3. White board coding
  • Q4. Memory manger design
  • Q5. Virtual memory concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on data structures
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2023.

Round 1 - Coding Test 

Practice on hackerrank, they send hackerrank link for screening round.

Round 2 - Technical 

(1 Question)

  • Q1. C, os, embedded questions
Round 3 - Technical 

(1 Question)

  • Q1. C, data structures,os
Round 4 - HR 

(1 Question)

  • Q1. Previous jobs, salary discussion, relocation

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice basic, logical, coding questions for embedded interviews ex. Simple Data structures, bit manipulation etc
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Find the length of longest common subsequence in given strings.
  • Ans. 

    The length of the longest common subsequence in given strings is found using dynamic programming.

    • Use dynamic programming to find the length of the longest common subsequence.

    • Compare characters of the strings and build a matrix to store the lengths of common subsequences.

    • Traverse the matrix to find the length of the longest common subsequence.

  • Answered by AI
  • Q2. A basic DFS based graph question.
Round 2 - Coding Test 

Write the algorithm for topological sorting.

Round 3 - Technical 

(2 Questions)

  • Q1. Basic system design questions.
  • Q2. Explain CAP theorem.
  • Ans. 

    CAP theorem states that in a distributed system, it is impossible to simultaneously guarantee consistency, availability, and partition tolerance.

    • Consistency: All nodes in the system have the same data at the same time.

    • Availability: Every request gets a response, even if some nodes are down.

    • Partition Tolerance: The system continues to operate despite network partitions.

    • In a distributed system, you can only achieve two o...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Explain your previous projects .

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is VLSI design cycle ?
  • Ans. 

    VLSI design cycle is the process of creating integrated circuits by going through various stages from design to fabrication.

    • VLSI design cycle involves stages like specification, design, verification, synthesis, and fabrication.

    • It starts with defining the requirements and specifications of the integrated circuit.

    • Design phase includes logic design, circuit design, and physical design.

    • Verification ensures that the design ...

  • Answered by AI
  • Q2. FIFO Pipeline depth calculation
Round 2 - Technical 

(1 Question)

  • Q1. Verilog code debug question

Interview Preparation Tips

Interview preparation tips for other job seekers - Do read job JD and prepare accordingly

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Coding question on dll and bits
  • Q2. Detect and remove loop in ll
  • Ans. 

    To detect and remove a loop in a linked list, we can use Floyd's Cycle Detection Algorithm.

    • Use two pointers, slow and fast, to traverse the linked list

    • If there is a loop, the fast pointer will eventually meet the slow pointer

    • Once the loop is detected, reset one of the pointers to the head and move both pointers at the same pace until they meet again to find the start of the loop

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - nothing

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is virtual function?
  • Ans. 

    A virtual function is a function in a base class that is declared using the keyword 'virtual' and can be overridden by a function in a derived class.

    • Virtual functions allow a derived class to provide a specific implementation of a function that is already defined in a base class.

    • They enable polymorphism, where a pointer to a base class can be used to call a function in a derived class.

    • Virtual functions are used in obje...

  • Answered by AI
  • Q2. What is android boot up sequence
  • Ans. 

    Android boot up sequence involves several stages including power on, bootloader, kernel initialization, and system initialization.

    • Power on the device

    • Bootloader loads the kernel

    • Kernel initializes the system

    • System initialization completes the boot up process

  • Answered by AI
  • Q3. Question about the recent projects
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows for code reusability by creating a new class based on an existing class

    • Derived class (subclass) inherits attributes and methods from a base class (superclass)

    • Can have multiple levels of inheritance (multi-level inheritance)

    • Example: Animal class can be a base class with properties like name a...

  • Answered by AI
  • Q5. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI

Skills evaluated in this interview

Infineon Technologies Interview FAQs

How many rounds are there in Infineon Technologies Senior Engineer interview?
Infineon Technologies interview process usually has 5 rounds. The most common rounds in the Infineon Technologies interview process are Technical, Resume Shortlist and Behavioral.
How to prepare for Infineon Technologies Senior 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 Python, Perl, Debugging, Automation and Silicon.

Tell us how to improve this page.

Infineon Technologies Senior Engineer Salary
based on 38 salaries
₹13.8 L/yr - ₹28 L/yr
116% more than the average Senior Engineer Salary in India
View more details

Infineon Technologies Senior Engineer Reviews and Ratings

based on 6 reviews

3.8/5

Rating in categories

3.2

Skill development

4.3

Work-life balance

3.8

Salary

3.5

Job security

4.3

Company culture

4.1

Promotions

3.7

Work satisfaction

Explore 6 Reviews and Ratings
Senior Engineer Digital Functional Verification

Bangalore / Bengaluru

6-10 Yrs

Not Disclosed

Senior Engineer Verification

Bangalore / Bengaluru

5-6 Yrs

₹ 13.75-27.3 LPA

Senior Engineer - Component Verification

Bangalore / Bengaluru

5-6 Yrs

₹ 13.75-27.3 LPA

Explore more jobs
Staff Engineer
140 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Staff Engineer
79 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
67 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
53 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Specialist
51 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Infineon Technologies with

Texas Instruments

4.1
Compare

Analog Devices

4.0
Compare

STMicroelectronics

4.1
Compare

NXP Semiconductors

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