Upload Button Icon Add office photos

Filter interviews by

National Infotech Senior Embedded Engineer Interview Questions, Process, and Tips

Updated 27 Sep 2023

National Infotech Senior Embedded Engineer Interview Experiences

1 interview found

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

I applied via campus placement at Sardar Vallabhbhai National Institute of Technology (NIT), Surat and was interviewed in Mar 2023. 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 - Technical 

(4 Questions)

  • Q1. What is the difference between a while loop and a do while loop?
  • Ans. 

    A while loop checks the condition before executing the code block, while a do while loop executes the code block once before checking the condition.

    • While loop: Condition is checked before entering the loop.

    • Do while loop: Code block is executed at least once before checking the condition.

    • Example: while (condition) { // code block } vs. do { // code block } while (condition);

  • Answered by AI
  • Q2. How the boost converter will work?
  • Ans. 

    Boost converter is a type of DC-DC converter that steps up the input voltage to a higher output voltage.

    • Boost converter uses an inductor, a diode, a capacitor, and a switch to increase the voltage level.

    • During the switch on-time, energy is stored in the inductor. During the switch off-time, the energy is transferred to the output.

    • The output voltage is higher than the input voltage due to the energy transfer process.

    • Boo...

  • Answered by AI
  • Q3. What do you know about embedded c programming?
  • Ans. 

    Embedded C programming is a specialized skill used in developing software for embedded systems.

    • Embedded C is a variant of the C programming language specifically designed for embedded systems.

    • It is used to write code for microcontrollers, sensors, and other hardware devices.

    • Embedded C programming requires knowledge of low-level hardware interactions and memory management.

    • Example: Writing code to control a robotic arm u

  • Answered by AI
  • Q4. Why do we use timers and counters?
  • Ans. 

    Timers and counters are essential in embedded systems for tasks like scheduling, measuring time intervals, generating waveforms, and counting events.

    • Timers are used for scheduling tasks at specific intervals, generating PWM signals, and measuring time durations.

    • Counters are used for counting external events like pulses, frequency measurement, and capturing input signals.

    • Timers and counters are crucial for real-time app...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your embedded C programming and project and fundamental electrical engineering concepts

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. Explain the work in current org
  • Ans. 

    I lead a team of engineers in developing embedded systems for industrial automation.

    • Lead a team of engineers in developing embedded systems

    • Work on projects related to industrial automation

    • Collaborate with cross-functional teams to ensure project success

  • Answered by AI
  • Q2. Explain compilation process in C
  • Ans. 

    Compilation process in C involves preprocessing, compiling, assembling, and linking.

    • Preprocessing: Includes header files, macro expansion, and conditional compilation.

    • Compiling: Translates source code into assembly code specific to the target architecture.

    • Assembling: Converts assembly code into machine code in object files.

    • Linking: Combines object files and libraries to generate an executable file.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Bare metal code for blinking an LED,
  • Ans. 

    Blinking an LED using bare metal code involves directly manipulating hardware registers without an operating system.

    • Access the GPIO register for the specific pin connected to the LED

    • Set the pin as an output

    • Toggle the pin state at regular intervals to create the blinking effect

  • Answered by AI
  • Q2. Different types of pointers, volatile variable, storage classes, Static and extern keywords, ISR,
  • Ans. 

    Different types of pointers, volatile variable, storage classes, Static and extern keywords, ISR

    • Pointers: Null pointer, void pointer, function pointer

    • Volatile variable: Used to indicate that a variable may be changed by external factors

    • Storage classes: auto, register, static, extern

    • Static keyword: Used to declare variables that are only accessible within the same file

    • Extern keyword: Used to declare variables that are d...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Find nth largest number in a jumbled array
  • Ans. 

    Use sorting to find the nth largest number in a jumbled array.

    • Sort the array in descending order.

    • Access the nth element in the sorted array to find the nth largest number.

  • Answered by AI
  • Q2. Deeper questions on static, compilation

Skills evaluated in this interview

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

National Infotech Interview FAQs

How many rounds are there in National Infotech Senior Embedded Engineer interview?
National Infotech interview process usually has 2 rounds. The most common rounds in the National Infotech interview process are Resume Shortlist and Technical.
What are the top questions asked in National Infotech Senior Embedded Engineer interview?

Some of the top questions asked at the National Infotech Senior Embedded Engineer interview -

  1. What is the difference between a while loop and a do while lo...read more
  2. What do you know about embedded c programmi...read more
  3. How the boost converter will wo...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

National Infotech Senior Embedded Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

1.0

Work-life balance

2.0

Salary

2.0

Job security

3.0

Company culture

2.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Senior Engineer
4 salaries
unlock blur

₹2.4 L/yr - ₹3.7 L/yr

Junior Engineer
3 salaries
unlock blur

₹2 L/yr - ₹2.4 L/yr

Explore more salaries
Compare National Infotech 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