Upload Button Icon Add office photos

Filter interviews by

Infineon Technologies Software Developer Interview Questions and Answers

Updated 10 Aug 2022

Infineon Technologies Software Developer Interview Experiences

2 interviews found

I applied via Referral and was interviewed before Aug 2021. There were 2 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 - HR 

(2 Questions)

  • Q1. What are your top 3 strengths?
  • Q2. What are your top 3 weaknesses?
  • Ans. 

    I am always striving to improve, but my current weaknesses are: perfectionism, public speaking, and delegating tasks.

    • Perfectionism can lead to spending too much time on small details and missing deadlines.

    • Public speaking can make me nervous and I may need to practice more to feel confident.

    • Delegating tasks can be difficult for me because I like to have control over the outcome, but I am working on trusting others to ha

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident, Show case your skills what you are best at.

I was interviewed in Sep 2017.

Interview Questionnaire 

3 Questions

  • Q1. A C program was asked to write
  • Q2. How to implement sr flipflop using gates.
  • Ans. 

    An SR flip-flop can be implemented using NAND gates.

    • Use two NAND gates to create the SR flip-flop.

    • Connect the output of one NAND gate to the input of the other NAND gate.

    • Connect the Set (S) and Reset (R) inputs to the inputs of the NAND gates.

    • The output of the first NAND gate is the Q output, and the output of the second NAND gate is the Q̅ output.

  • Answered by AI
  • Q3. Steps to find temperature of N rooms and display the same
  • Ans. 

    The answer describes the steps to find and display the temperature of N rooms.

    • Create an array to store the temperature of each room

    • Iterate through each room and prompt the user to enter the temperature

    • Store the temperature in the corresponding array index

    • Display the temperature of each room

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: The first criteria for shortlisting is based on CGPA (8 above)

Round: Test
Experience: A technical test was conducted which had questions from C language and Microcontroller. It was MCQ type.The test was moderately hard
Duration: 30 minutes
Total Questions: 30

Round: Technical Interview
Experience: The above questions were asked and a paper was provided to answer it. The next shotlist was based on the paper evaluation
Tips: Technical knowledge mandatory

Skills: Technical
College Name: Government Model Engineering College, Thrikkakara

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

Interview questions from similar companies

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

(2 Questions)

  • Q1. OOPS question to develop a fault-sensing algorithm in machines
  • Q2. Debug array question in bubble sort
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General aptitude questions

Round 2 - Coding Test 

Problem solving, solved 2 out of 3 questions

Round 3 - Group Discussion 

General topics were given in gd

Round 4 - Technical 

(2 Questions)

  • Q1. Programming concepts
  • Q2. Projects and coding round questions solved
Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Its basically a test comprising 32 mcq
12- logical reasoning
20- core C,DBMS, OS , Computer Networks

2 coding Questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. He just Gave me to design a React Page and removed all the starting code and gave me blank folder and asked to code all by myself
  • Q2. He asked me SQL queries which was quite tough as its of nested queries
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Linkedlist questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Depth Os and C
  • Q2. Multi threading and semaphores
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is normalization
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization is used to eliminate data redundancy by breaking up tables into smaller, related tables.

    • It helps in reducing data anomalies such as insertion, update, and deletion anomalies.

    • Normalization is achieved through a series of stages called normal forms, with the most common being First Normal Form (1NF)...

  • Answered by AI
  • Q2. Code for armstrong alogrithm
  • Ans. 

    Armstrong algorithm is used to find Armstrong numbers in a given range.

    • Iterate through the numbers in the given range

    • Calculate the sum of cubes of each digit in the number

    • Check if the sum is equal to the original number

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions & Answers

Intel user image Bhavaa Dharshini

posted on 17 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - interview 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. What was malloc
  • Ans. 

    malloc is a function in C programming used to dynamically allocate memory during runtime.

    • malloc stands for 'memory allocation'.

    • It is used to allocate a specific amount of memory during program execution.

    • The allocated memory is not automatically initialized and must be explicitly freed using the free() function to avoid memory leaks.

  • Answered by AI

Skills evaluated in this interview

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

Medium coding qs with technical interview

Round 2 - Technical 

(1 Question)

  • Q1. Reverse an array
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Count freq of elements in array
  • Ans. 

    Count frequency of elements in array of strings

    • Iterate through the array and use a hashmap to store the frequency of each element

    • Use a for loop to go through each element and update the count in the hashmap

    • Return the hashmap with element frequencies

  • Answered by AI

Skills evaluated in this interview

Infineon Technologies Interview FAQs

How many rounds are there in Infineon Technologies Software Developer interview?
Infineon Technologies interview process usually has 2 rounds. The most common rounds in the Infineon Technologies interview process are Resume Shortlist and HR.
What are the top questions asked in Infineon Technologies Software Developer interview?

Some of the top questions asked at the Infineon Technologies Software Developer interview -

  1. Steps to find temperature of N rooms and display the s...read more
  2. How to implement sr flipflop using gat...read more
  3. What are your top 3 weakness...read more

Tell us how to improve this page.

Infineon Technologies Software Developer Salary
based on 35 salaries
₹6 L/yr - ₹17 L/yr
39% more than the average Software Developer Salary in India
View more details

Infineon Technologies Software Developer Reviews and Ratings

based on 4 reviews

4.4/5

Rating in categories

3.5

Skill development

4.4

Work-life balance

4.0

Salary

4.9

Job security

4.4

Company culture

3.5

Promotions

4.4

Work satisfaction

Explore 4 Reviews and Ratings
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