Upload Button Icon Add office photos

Filter interviews by

Vinnovations Senior Embedded Software Engineer Interview Questions and Answers

Updated 24 Nov 2022

Vinnovations Senior Embedded Software Engineer Interview Experiences

1 interview found

I applied via Referral and was interviewed before Nov 2021. 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 - Technical 

(4 Questions)

  • Q1. Full explanation about any communication protocol
  • Ans. 

    A communication protocol is a set of rules that govern the exchange of data between two or more devices.

    • Communication protocols define the format, timing, sequencing, and error checking of messages exchanged between devices.

    • Examples of communication protocols include TCP/IP, Bluetooth, USB, and CAN bus.

    • Protocols can be either proprietary or open standards.

    • Protocols can be categorized as either synchronous or asynchrono...

  • Answered by AI
  • Q2. Basics of C programming language
  • Q3. Usage of macros in the embedded C
  • Ans. 

    Macros are extensively used in embedded C for code optimization and abstraction.

    • Macros can be used for defining constants, functions, and conditional compilation.

    • They can also be used for code optimization by replacing repetitive code with a macro.

    • However, macros can also lead to code readability issues and should be used judiciously.

    • Examples of commonly used macros in embedded C include #define, #ifdef, and #ifndef.

  • Answered by AI
  • Q4. Simple programs related to recursive function
Round 3 - HR 

(1 Question)

  • Q1. Discuss the strengths and weakness of oneself

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and answer the questions straight to the point

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Hi.. 1.basic details. 2. Keen details of an Project on which I have worked. 3. About STLC and SDLC and methodologies. 4. Other testing skills.
  • Q2. I asked about project details and about work environment.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your mind calm and in control to answer properly for each questions. Don't say No/I can't if not known.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What is basic of c
  • Ans. 

    Basics of C include syntax, data types, variables, functions, and control structures.

    • C is a procedural programming language

    • Variables must be declared before use

    • Functions are blocks of code that perform a specific task

    • Control structures include if-else, loops, and switch-case

    • Data types in C include int, float, char, etc.

  • Answered by AI
  • Q2. What is basic of embedded
  • Ans. 

    Embedded systems are specialized computing systems designed to perform specific tasks within a larger system.

    • Embedded systems are typically designed to be small, efficient, and reliable.

    • They often have limited resources such as memory, processing power, and energy.

    • Examples of embedded systems include microcontrollers in household appliances, automotive control systems, and industrial automation.

    • Embedded software is spe...

  • Answered by AI
  • Q3. What is basic of contoller
  • Ans. 

    The basic of a controller is to manage and regulate the operation of a system or device.

    • Controllers receive input signals and process them to generate output signals.

    • They can be programmed to perform specific tasks or functions.

    • Examples include microcontrollers, PLCs, and PID controllers.

  • Answered by AI
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
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Percentage, speed, series, logical abulity, differnces

Round 2 - Technical 

(3 Questions)

  • Q1. C programs, protocols, Embedded C, pointers
  • Q2. Strings swapping nibbles using c
  • Ans. 

    Swapping nibbles of strings in C

    • Use bitwise operations to swap the nibbles of each character in the string

    • Iterate through each character in the string and swap the nibbles

    • Ensure to handle edge cases like strings with odd length or non-hex characters

  • Answered by AI
  • Q3. I2c, can, spi, uart
Round 3 - HR 

(2 Questions)

  • Q1. Normal hr questions
  • Q2. Self, company details

Skills evaluated in this interview

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

Online c programming test using online tool

Round 2 - One-on-one 

(1 Question)

  • Q1. Manager level round - explain about project and area of difficulty in embedded. Which one we work and fix issue
Round 3 - HR 

(1 Question)

  • Q1. Discuss about offer letter

Embedded Software Engineer Interview Questions & Answers

Infosys user image Vishnupriya Thamilarasan

posted on 1 May 2024

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

I applied via Job Portal and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

Very basic c questions like an array

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 

(1 Question)

  • Q1. Programing language
Round 3 - Aptitude Test 

Syllabus based question

Round 4 - HR 

(1 Question)

  • Q1. Introduction, education
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Dec 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 - One-on-one 

(2 Questions)

  • Q1. Mainly focused on basics of c language Stack program
  • Q2. Compilation stages , function

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the basic c fundamentals well and do practice with program like palindrome etc
Round 1 - One-on-one 

(1 Question)

  • Q1. What is dangling pointer?
  • Ans. 

    A dangling pointer is a pointer that points to a memory location that has been deallocated or freed.

    • Dangling pointers can cause crashes or unpredictable behavior.

    • They occur when a pointer is not set to NULL after the memory it points to is freed.

    • They can also occur when a pointer is used after the memory it points to has been freed.

    • Dangling pointers can be avoided by setting pointers to NULL after freeing memory.

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Difference between static and dynamic library ?
  • Ans. 

    Static libraries are linked at compile-time, while dynamic libraries are linked at run-time.

    • Static libraries are included in the final executable file, increasing its size.

    • Dynamic libraries are loaded into memory only when needed, reducing the executable size.

    • Static libraries are platform-specific, while dynamic libraries can be shared across platforms.

    • Static libraries provide faster execution, while dynamic libraries ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics and C data structures throughly

Skills evaluated in this interview

Vinnovations Interview FAQs

How many rounds are there in Vinnovations Senior Embedded Software Engineer interview?
Vinnovations interview process usually has 3 rounds. The most common rounds in the Vinnovations interview process are Resume Shortlist, Technical and HR.
What are the top questions asked in Vinnovations Senior Embedded Software Engineer interview?

Some of the top questions asked at the Vinnovations Senior Embedded Software Engineer interview -

  1. Full explanation about any communication proto...read more
  2. Usage of macros in the embedde...read more
  3. Simple programs related to recursive funct...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Vinnovations Senior Embedded Software Engineer Salary
based on 5 salaries
₹9.2 L/yr - ₹10 L/yr
26% less than the average Senior Embedded Software Engineer Salary in India
View more details

Vinnovations Senior Embedded Software Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.0

Salary

3.0

Job security

4.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Embedded Software Engineer
24 salaries
unlock blur

₹3.3 L/yr - ₹10.8 L/yr

Embedded Engineer
6 salaries
unlock blur

₹2.4 L/yr - ₹4.8 L/yr

Embedded Software Developer
5 salaries
unlock blur

₹2.4 L/yr - ₹6 L/yr

Senior Embedded Software Engineer
5 salaries
unlock blur

₹9.1 L/yr - ₹10 L/yr

Engineer
3 salaries
unlock blur

₹4 L/yr - ₹4 L/yr

Explore more salaries
Compare Vinnovations with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

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