Upload Button Icon Add office photos

Filter interviews by

Zumi Solutions Embedded Software Engineer Interview Questions and Answers

Updated 15 Jun 2024

Zumi Solutions Embedded Software Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in Jun 2022.

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. Write a C program to arrange the elements in ascending order.
  • Ans. 

    C program to arrange elements in ascending order

    • Use bubble sort algorithm to compare adjacent elements and swap if necessary

    • Iterate through the array multiple times until no more swaps are needed

    • Ensure proper error handling for input validation

    • Example: int arr[] = {4, 2, 7, 1, 5};

  • Answered by AI
  • Q2. Write a C program to add two elements without using third variable.
  • Ans. 

    Add two elements without using a third variable in C program.

    • Use bitwise XOR operation to add two elements without carry

    • Store the result in one of the variables

    • Example: int a = 5, b = 3; a = a ^ b; b = a ^ b; a = a ^ b; // a=3, b=5

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectation.
  • Q2. Comfortable with the bond period or not?

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

+ C and C++concepts.
+ RTOS
+ Multi threading

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare c cpp concepts along with RTOS and problem solving skills
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Jan 2024.

Round 1 - Coding Test 

Embedded c 15 question and c language programming

Round 2 - Technical 

(1 Question)

  • Q1. Basically focaus on c laguage
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Very easy, basic questions

Round 2 - Coding Test 

Written test
C programming

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

I applied via Company Website and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Asked about previous project
pointer's coding

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain your previous project?
  • Q2. Why do you prefer bosch
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Volatile keyword
  • Q2. Project specific
Round 2 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Reason for job change

I applied via Job Portal and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Related to embedded software

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good. also the HR process is good
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What are storage class
  • Ans. 

    Storage classes in C specify the scope and lifetime of variables.

    • Storage classes include auto, register, static, and extern.

    • Auto variables are local to a block and have automatic storage duration.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared in one file and can be used in another file.

  • Answered by AI
  • Q2. Explain structure program
  • Ans. 

    A structure program is a program that uses structures to group related data together.

    • Structures in C programming allow you to group related data together under one name.

    • You can define a structure using the 'struct' keyword.

    • Structures can contain different data types, including int, float, char, and even other structures.

    • You can access the members of a structure using the dot operator.

    • Example: struct employee { int id; ...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Fair and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Questions in Embedded C, and about microcontrollers we have worked with
Round 1 - Technical 

(4 Questions)

  • Q1. Types of error messages in CAN protocol
  • Ans. 

    Types of error messages in CAN protocol

    • Bit Error: Error in a single bit of the message

    • Stuff Error: Error in the stuffing bits

    • CRC Error: Error in the cyclic redundancy check

    • Form Error: Error in the message format

    • Acknowledge Error: Error in the acknowledgement of the message

  • Answered by AI
  • Q2. Bit arbitration and its significance
  • Ans. 

    Bit arbitration is the process of resolving conflicts when multiple devices try to access the same bus simultaneously.

    • Bit arbitration is important in multi-master systems where multiple devices can initiate data transfer.

    • It ensures that only one device gains control of the bus at a time.

    • Different arbitration schemes include priority-based, round-robin, and collision detection.

    • For example, in a CAN bus system, the devic...

  • Answered by AI
  • Q3. Difference between normal can and extended can
  • Ans. 

    CAN is a communication protocol used in automotive and industrial applications. Normal CAN has 11-bit identifier while Extended CAN has 29-bit identifier.

    • Normal CAN has 11-bit identifier while Extended CAN has 29-bit identifier.

    • Extended CAN allows for more unique identifiers, enabling more devices to communicate on the same network.

    • Normal CAN has a maximum data rate of 1 Mbps while Extended CAN has a maximum data rate ...

  • Answered by AI
  • Q4. Why can bus uses 120 ohm resistance
  • Ans. 

    120 ohm resistance is used in CAN bus to match the characteristic impedance of the transmission line.

    • CAN bus is a differential signaling system that requires a balanced impedance to prevent signal reflections.

    • The 120 ohm resistance matches the characteristic impedance of the transmission line, which is typically 120 ohms.

    • Without the proper impedance matching, signal reflections can cause data errors and reduce the maxi...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Explain diagnostic protocols
  • Ans. 

    Diagnostic protocols are a set of rules and procedures used to identify and troubleshoot problems in a system.

    • Diagnostic protocols are used in various fields such as automotive, medical, and computer networking.

    • They involve a series of tests and measurements to identify the root cause of a problem.

    • Diagnostic protocols can be manual or automated, depending on the complexity of the system.

    • Examples of diagnostic protocols...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Bosch its all about can, and diagnostics protocols, uds services, no matter what the position

Skills evaluated in this interview

Zumi Solutions Interview FAQs

How many rounds are there in Zumi Solutions Embedded Software Engineer interview?
Zumi Solutions interview process usually has 3 rounds. The most common rounds in the Zumi Solutions interview process are Resume Shortlist, Technical and HR.
How to prepare for Zumi Solutions Embedded Software 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 Zumi Solutions. The most common topics and skills that interviewers at Zumi Solutions expect are Android, Android Application Development, Application, Application Development and C++.
What are the top questions asked in Zumi Solutions Embedded Software Engineer interview?

Some of the top questions asked at the Zumi Solutions Embedded Software Engineer interview -

  1. Write a C program to arrange the elements in ascending ord...read more
  2. Write a C program to add two elements without using third variab...read more

Tell us how to improve this page.

Zumi Solutions Embedded Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Zumi Solutions Embedded Software Engineer Salary
based on 41 salaries
₹1.8 L/yr - ₹7.7 L/yr
37% less than the average Embedded Software Engineer Salary in India
View more details

Zumi Solutions Embedded Software Engineer Reviews and Ratings

based on 7 reviews

3.5/5

Rating in categories

4.1

Skill development

2.8

Work-life balance

2.7

Salary

2.7

Job security

2.4

Company culture

2.7

Promotions

3.8

Work satisfaction

Explore 7 Reviews and Ratings
Embedded Software Engineer
41 salaries
unlock blur

₹1.8 L/yr - ₹7.7 L/yr

Software Engineer
7 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Android App Developer
7 salaries
unlock blur

₹2.4 L/yr - ₹9.6 L/yr

Embedded Software Developer
6 salaries
unlock blur

₹1 L/yr - ₹7.8 L/yr

Software Developer
4 salaries
unlock blur

₹3.6 L/yr - ₹10 L/yr

Explore more salaries
Compare Zumi Solutions with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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