Upload Button Icon Add office photos

Continental Device India

Compare button icon Compare button icon Compare

Filter interviews by

Continental Device India Embedded Firmware Engineer Interview Questions and Answers

Updated 2 Apr 2024

Continental Device India Embedded Firmware Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to integrate and differentiate signals through software embedded c for 8 bit , 16 bit architecture
  • Ans. 

    Integrating and differentiating signals through software embedded C for 8-bit and 16-bit architecture involves utilizing appropriate data types and algorithms.

    • Use fixed-point arithmetic for 8-bit architecture to maintain precision

    • Leverage floating-point arithmetic for 16-bit architecture for higher precision

    • Implement algorithms like finite difference method for differentiation

    • Utilize digital signal processing technique...

  • Answered by AI
  • Q2. How to implement digital filter through software
  • Ans. 

    Digital filters can be implemented through software by using algorithms such as Finite Impulse Response (FIR) or Infinite Impulse Response (IIR).

    • Choose the appropriate filter type based on the desired frequency response and computational complexity

    • Implement the filter algorithm in the firmware code using programming languages like C or assembly

    • Optimize the filter design for efficient memory usage and processing speed

    • Te...

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
timepasstiwari
·
A Digital Markter
ChatGPT prepped me HARD for my interview!
Spent like two hours on chatgpt yesterday prepping for an interview. First, the usual, copy-pasted my resume and the job description, telling it to "upload this to your memory 'cause we are going to talk about it later". Then I grilled it with questions about stuff I didn't get in the job spec, and chatgpt helped me figure things out. I asked it to list the four or five key things they are looking for in the role. Then I told chatgpt to quiz me with ten questions, one at a time, to help me think about how I have gained experience in those areas. After the ten questions, it gave me strengths/weaknesses and a summary. Finally, I had chatgpt summarize each of my answers into three bullet points. Now have got a list of stories ready to go for any interview. No matter the question, I can steer the convo toward one of these success stories.
Got a question about Continental Device India?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview in Feb 2017.

Interview Questionnaire 

7 Questions

  • Q1. What is a malloc function and where is it used and how is it different from new?
  • Ans. 

    malloc is a function in C that dynamically allocates memory on the heap. It is used to allocate memory for variables or data structures.

    • malloc is used in C programming language.

    • It is used to allocate memory on the heap.

    • malloc is different from 'new' in C++ as it does not call constructors for objects.

  • Answered by AI
  • Q2. What is the difference between C++ and Objective C and where will you use it?
  • Ans. 

    C++ is a general-purpose programming language while Objective C is a superset of C used for iOS and macOS development.

    • C++ is widely used for developing applications, games, and system software.

    • Objective C is mainly used for iOS and macOS development.

    • C++ supports both procedural and object-oriented programming paradigms.

    • Objective C is an object-oriented language with dynamic runtime features.

    • C++ has a larger community a...

  • Answered by AI
  • Q3. What is the difference between class container and class composition?
  • Ans. 

    Class container is a class that holds objects of other classes, while class composition is a way to combine multiple classes to create a new class.

    • Class container holds objects of other classes, acting as a collection or container.

    • Class composition combines multiple classes to create a new class with its own behavior and attributes.

    • In class container, the objects are typically stored in a data structure like an array o...

  • Answered by AI
  • Q4. There are fifteen horses and a racing track that can run five horses at a time. You have to figure out the top 3 horses out of those and you don't have any timer machine to measure. How will you find the t...
  • Ans. 

    Divide the horses into groups of 5 and race them. Take the top 2 from each race and race them again. Finally, race the top 2 horses to determine the top 3.

    • Divide the horses into 3 groups of 5 and race them.

    • Take the top 2 horses from each race and race them again.

    • Finally, race the top 2 horses to determine the top 3.

  • Answered by AI
  • Q5. What is the most difficult problem that you have solved (during work) till now and why you think you could do so?
  • Ans. 

    Developing a real-time data processing system for a high-traffic e-commerce website

    • Implemented a distributed system architecture to handle large volumes of data

    • Optimized algorithms for efficient data processing and storage

    • Utilized caching mechanisms to improve system performance

    • Worked closely with cross-functional teams to troubleshoot and resolve issues

    • Example: Successfully reduced data processing time by 50% by imple...

  • Answered by AI
  • Q6. Why you want to change your current job?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Looking for a more challenging role to further develop my skills

    • Interested in exploring new technologies and industries

    • Seeking better career advancement opportunities

    • Want to work in a more collaborative team environment

  • Answered by AI
  • Q7. What is the width of a tree? How will you calculate the width of the tree?
  • Ans. 

    The width of a tree is the maximum number of nodes at any level in the tree.

    • To calculate the width of a tree, we can perform a level order traversal and keep track of the maximum number of nodes at any level.

    • We can use a queue data structure to perform the level order traversal.

    • At each level, we count the number of nodes in the queue and update the maximum width if necessary.

  • Answered by AI

Interview Preparation Tips

Skills: Basic C/C++, Implementing Data Structures In C++

Skills evaluated in this interview

Embedded Firmware Engineer Interview Questions Asked at Other Companies

Q1. Based on the provided circuit, design the components involved in ... read more
Q2. When 2 trains move in opposite directions , what point will they ... read more
Q3. What are the design specifications for creating a vending machine ... read more
Q4. Write an assembly language program for reversing a byte for a hex ... read more
Q5. Write an assembly language program for displaying square waves wi ... read more

I appeared for an interview in Nov 2016.

Interview Questionnaire 

8 Questions

  • Q1. A random number will be given as input to system,write a program to detect its data type(int or float ) without using size of function
  • Ans. 

    This program detects if a number is an integer or a float based on its input format.

    • Use input() to get user input as a string.

    • Check if the string contains a decimal point to identify floats.

    • Use str.isdigit() to check if the string represents an integer.

    • Example: '123' is int, '123.45' is float.

  • Answered by AI
  • Q2. General hr questions
  • Q3. Once again general hr interview questions
  • Q4. 1.given a large rectangle
  • Ans. 

    Need more context. What needs to be done with the large rectangle?

    • What are the dimensions of the rectangle?

    • Is it a 2D or 3D object?

    • What is the context of the problem?

    • Are there any constraints or limitations?

    • What tools or programming languages can be used?

  • Answered by AI
  • Q5. You will be given dimensions of a bigger rectangle and smaller rectangle,derive a formula to get how many smaller rectangles fit into the bigger rectangle
  • Ans. 

    Derive a formula to determine how many smaller rectangles fit into a bigger rectangle given their dimensions.

    • Calculate the number of times the smaller rectangle can fit into the bigger rectangle horizontally and vertically

    • Divide the width of the bigger rectangle by the width of the smaller rectangle to get the horizontal count

    • Divide the height of the bigger rectangle by the height of the smaller rectangle to get the ve...

  • Answered by AI
  • Q6. How many points are required to draw a rectangle
  • Ans. 

    At least 4 points are required to draw a rectangle.

    • A rectangle has 4 sides and 4 corners, so at least 4 points are needed to define those corners.

    • The points must be arranged in a specific order to form a closed shape with 4 sides.

    • Additional points can be used to add details or modify the shape of the rectangle.

    • The number of points required may vary depending on the software or tool used to draw the rectangle.

  • Answered by AI
  • Q7. What will be the new coordinates of a rectangle points if rectangle length and breadth is scaled and write a program to calculate the coordinates of corner points of scaled rectangle
  • Ans. 

    Answering how to calculate new coordinates of a scaled rectangle and providing a program for it.

    • To calculate new coordinates, multiply the original coordinates by the scaling factor

    • Scaling factor can be calculated by dividing the new length/breadth by the original length/breadth

    • Program can take input of original coordinates, scaling factor, and output new coordinates

    • Example: Original coordinates: (0,0), (0,5), (5,5), (...

  • Answered by AI
  • Q8. Lastly a puzzle: i dont remember the question

Interview Preparation Tips

Round: Test
Experience: The test had three sections:
1.aptitude:It was like any other aptitude test,all it takes is a bit of practice to crack all the questions
2.C programming:Basics of c were asked,outputs of some programs,u have to be thorough with concepts of c
3.Electronics:The company hired for both profiles: 1. PDK:software
and 2.Logic library:hardware,so this electronics section was also there,questions are mostly Network analysis,cmos logic,digital logic,vlsi etc
u should have good basics to get the electronics questions of course they are not very hard,but not too easy


Tips: practice aptitude,basics of c programming and also basics of electronics
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Test
Experience: after 1st round i was shortlisted to this technical round,i was asked this question, i suggested that i will convert that number into a string and check whether string has a dot or not to check if it is float or int,the interviewer was not very impressed but was ok and asked few small questions and promoted me to next round

Tips: If u crack test with top marks,the technical rounds will be very easy,because the interviewers do not ask tough questions for people who cracked written test with high marks

Round: Technical Interview
Experience: tell me about yourself,strengths,weakness,three principles u follow in life,etc
Tips: This round depends on you,dont try to bluff something,they will know if u are bluffing,take a breath and speak up ur mind,be confident u can do it

Round: HR Interview
Experience: same questions,but this time less duration,not involving lengthy discussions, i think this round was just for double check

Round: HR Interview
Experience: After the hr round,only seven were shortlist,this interview round was very much easy and they checked my approach to the given problem,they were checking how well i am thinking adding complexities to the given problem
Tips: they did not check my programming ability,but just problem solving skills,so be good at aptitude,by practicing as much as you can

Round: Group Discussion
Experience: after technical interview,4 were shortlisted,so they went for gd round,it was general topic,which checks your general knowledge
Tips: Dont be nervous,just speak what ever you know,never mind language issues
Duration: 20 minutes

Skills: for pdk profile :programming
College Name: NIT Warangal

Interview Questionnaire 

1 Question

  • Q1. Line drawing algorithm , clone linked list

Interview Questionnaire 

2 Questions

  • Q1. 1. Basic testing questions
  • Q2. 2. Question related to API and sql

Interview Questionnaire 

1 Question

  • Q1. How do you rate yourself in c?
  • Ans. 

    I consider myself proficient in C, with a solid understanding of its syntax, memory management, and data structures.

    • Strong Understanding of Syntax: I am comfortable with C's syntax, including pointers, arrays, and structures, which are fundamental to the language.

    • Memory Management: I have experience with dynamic memory allocation using malloc and free, ensuring efficient use of memory in applications.

    • Data Structures: I...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Why would you like to relocate.?
  • Q2. What are the expectation from us as a Company.?
  • Q3. What make you become an engineer ?

Interview Preparation Tips

Interview preparation tips for other job seekers - It's an approachable factory & friendly Human resources
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Python automation
  • Q2. Network testing

Interview Preparation Tips

Interview preparation tips for other job seekers - Work life balance is bad.Stock option is best
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Apr 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 - Coding Test 

Basic programming and Algorithms. data structures theory and implementation

Round 3 - HR 

(1 Question)

  • Q1. Formality round and nothing was asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and always be open for questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Indeed and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Related to Projects I have worked on
  • Q2. Techincal questions

Continental Device India Interview FAQs

How many rounds are there in Continental Device India Embedded Firmware Engineer interview?
Continental Device India interview process usually has 1 rounds. The most common rounds in the Continental Device India interview process are Technical.
What are the top questions asked in Continental Device India Embedded Firmware Engineer interview?

Some of the top questions asked at the Continental Device India Embedded Firmware Engineer interview -

  1. How to integrate and differentiate signals through software embedded c for 8 bi...read more
  2. How to implement digital filter through softw...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Texas Instruments Interview Questions
4.0
 • 126 Interviews
Synopsys Interview Questions
3.9
 • 94 Interviews
Molex Interview Questions
3.9
 • 57 Interviews
Lam Research Interview Questions
3.7
 • 49 Interviews
Broadcom Interview Questions
3.3
 • 42 Interviews
View all
Senior Engineer
8 salaries
unlock blur

₹4.5 L/yr - ₹10 L/yr

IT Manager
8 salaries
unlock blur

₹12 L/yr - ₹18 L/yr

Assistant Manager
7 salaries
unlock blur

₹4 L/yr - ₹9.5 L/yr

Production Supervisor
6 salaries
unlock blur

₹3 L/yr - ₹4 L/yr

Diploma Engineer
6 salaries
unlock blur

₹3 L/yr - ₹4 L/yr

Explore more salaries
Compare Continental Device India with

Apar Industries

4.1
Compare

Molex

3.9
Compare

TDK India Private Limited

3.9
Compare

Micron Technology

3.6
Compare
write
Share an Interview