Upload Button Icon Add office photos

L&T Technology Services

Compare button icon Compare button icon Compare

Filter interviews by

L&T Technology Services Embedded Engineer Interview Questions and Answers

Updated 15 Mar 2024

6 Interview questions

An Embedded Engineer was asked
Q. How does a computer boot up?
Ans. 

A computer boots up by executing the BIOS, loading the operating system into memory, and initializing hardware components.

  • BIOS (Basic Input/Output System) is the first code executed by a computer when powered on.

  • BIOS performs a Power-On Self Test (POST) to check hardware components.

  • BIOS then locates and loads the operating system from the boot device (e.g. hard drive, SSD, USB).

  • The operating system is loaded into ...

An Embedded Engineer was asked
Q. What are the steps involved in the compilation of a C program?
Ans. 

Compilation of a C program involves preprocessing, compiling, assembling, and linking.

  • Preprocessing: Includes header files, macro expansions, and comments removal. Example: gcc -E program.c

  • Compiling: Translates source code to assembly code. Example: gcc -S program.c

  • Assembling: Converts assembly code to machine code. Example: gcc -c program.s

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

Embedded Engineer Interview Questions Asked at Other Companies

asked in CONSYST
Q1. Two baskets, A and B, contain an unknown number of mangoes. If on ... read more
Q2. What is the difference between sensors and actuators?
Q3. Why are you interested in the field of embedded software developm ... read more
Q4. How can I assign a specific address to structure variables in C, ... read more
Q5. How many algorithms did you become familiar with while learning C ... read more
An Embedded Engineer was asked
Q. Write a program to determine if a given number is prime.
Ans. 

A prime number program checks if a number is prime, meaning it has no divisors other than 1 and itself.

  • A prime number is greater than 1 and has no divisors other than 1 and itself.

  • Example: 2, 3, 5, 7, 11 are prime numbers.

  • To check if a number n is prime, test divisibility from 2 to sqrt(n).

  • If n is divisible by any number in this range, it is not prime.

  • Edge cases: 0 and 1 are not prime; 2 is the only even prime num...

An Embedded Engineer was asked
Q. What is microcontroller? have you worked on any microcontroller? c++ basics polymorphism
Ans. 

A microcontroller is a small computer on a single integrated circuit that contains a processor core, memory, and programmable input/output peripherals.

  • Microcontrollers are commonly used in embedded systems for controlling various devices and appliances.

  • They are programmed using languages like C or assembly language.

  • Examples of popular microcontrollers include Arduino, Raspberry Pi, and PIC.

  • Microcontrollers are oft...

An Embedded Engineer was asked
Q. Explain I2c diff btn i2c and spi diff btn hw and sw interrupt
Ans. 

I2C is a serial communication protocol used to connect multiple devices with two wires. SPI is another serial protocol with four wires.

  • I2C uses a master-slave architecture while SPI uses a master-master architecture.

  • I2C supports multiple devices on the same bus while SPI requires a separate chip select line for each device.

  • Hardware interrupts are triggered by external events while software interrupts are triggered...

An Embedded Engineer was asked
Q. Storage classes in C
Ans. 

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

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

  • Auto variables are local to the block they are declared in.

  • 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.

  • Typedef is used to create new dat...

L&T Technology Services Embedded Engineer Interview Experiences

6 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
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 - Aptitude Test 

Normal basic apti lr conceptual questions

Round 3 - Technical 

(3 Questions)

  • Q1. What is microcontroller? have you worked on any microcontroller? c++ basics polymorphism
  • Ans. 

    A microcontroller is a small computer on a single integrated circuit that contains a processor core, memory, and programmable input/output peripherals.

    • Microcontrollers are commonly used in embedded systems for controlling various devices and appliances.

    • They are programmed using languages like C or assembly language.

    • Examples of popular microcontrollers include Arduino, Raspberry Pi, and PIC.

    • Microcontrollers are often us...

  • Answered by AI
  • Q2. Tell me about your project?
  • Q3. Prime no. program?
  • Ans. 

    A prime number program checks if a number is prime, meaning it has no divisors other than 1 and itself.

    • A prime number is greater than 1 and has no divisors other than 1 and itself.

    • Example: 2, 3, 5, 7, 11 are prime numbers.

    • To check if a number n is prime, test divisibility from 2 to sqrt(n).

    • If n is divisible by any number in this range, it is not prime.

    • Edge cases: 0 and 1 are not prime; 2 is the only even prime number.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. Linux: Explain system calls. Which system calls you used? IPC: which one you used? How to start yacto project? Diff betn process and thread. Explain I2c Difference between I2c And SPI difference between s...
  • Q2. Explain I2c diff btn i2c and spi diff btn hw and sw interrupt
  • Ans. 

    I2C is a serial communication protocol used to connect multiple devices with two wires. SPI is another serial protocol with four wires.

    • I2C uses a master-slave architecture while SPI uses a master-master architecture.

    • I2C supports multiple devices on the same bus while SPI requires a separate chip select line for each device.

    • Hardware interrupts are triggered by external events while software interrupts are triggered by s...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well .. linux

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Steps of compilation of a C program.
  • Ans. 

    Compilation of a C program involves preprocessing, compiling, assembling, and linking.

    • Preprocessing: Includes header files, macro expansions, and comments removal. Example: gcc -E program.c

    • Compiling: Translates source code to assembly code. Example: gcc -S program.c

    • Assembling: Converts assembly code to machine code. Example: gcc -c program.s

    • Linking: Combines object files and libraries to generate executable. Example: g...

  • Answered by AI
  • Q2. Storage classes in C
  • Ans. 

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

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

    • Auto variables are local to the block they are declared in.

    • 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.

    • Typedef is used to create new data typ...

  • Answered by AI
  • Q3. How does a computer boot up?
  • Ans. 

    A computer boots up by executing the BIOS, loading the operating system into memory, and initializing hardware components.

    • BIOS (Basic Input/Output System) is the first code executed by a computer when powered on.

    • BIOS performs a Power-On Self Test (POST) to check hardware components.

    • BIOS then locates and loads the operating system from the boot device (e.g. hard drive, SSD, USB).

    • The operating system is loaded into memor...

  • Answered by AI
  • Q4. Project related questions.

Interview Preparation Tips

Topics to prepare for L&T Technology Services Embedded Engineer interview:
  • C
  • Electronics
Interview preparation tips for other job seekers - Basics about C programming language will be tested.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

All about aptitude questions and test has multiple rounds

Round 2 - Coding Test 

Asked about basic code like palindrome, string reverse

I applied via Other and was interviewed in Aug 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Asked about embedded project, academic project, linux commands, c, AT commands

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrate more on project and c

I applied via Campus Placement and was interviewed before Sep 2021. There were 5 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 

(1 Question)

  • Q1. GATE level electrical and electronics questions
Round 3 - Aptitude Test 

Medium level difficulty

Round 4 - Assignment 

Pseudo code and two partial codes of array logic with disired output in 25 mins.

Round 5 - One-on-one 

(1 Question)

  • Q1. Projects related questions. WAP python code.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and just do it. Interview is easier than hard level aptitude round.

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about L&T Technology Services?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself ?
  • Ans. 

    I'm a passionate software engineer with a strong background in full-stack development and a love for solving complex problems.

    • Experience in developing web applications using React and Node.js.

    • Worked on a team project that improved application performance by 30%.

    • Strong understanding of algorithms and data structures, demonstrated in coding competitions.

    • Enjoy collaborating with cross-functional teams to deliver high-qual...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and share your technical knowledge
Are these interview questions helpful?

Interview Questionnaire 

2 Questions

  • Q1. HTML tags, Fibonacci search series and its uses, binary search and its real-life applications, what is a relational operator in CPP and what does it return, how do you declare a boolean value, what is str...
  • Q2. Be confident

I applied via Referral and was interviewed in Sep 2021. There were 4 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. Tell me about your self
  • Ans. 

    I'm a passionate software engineer with a strong background in full-stack development and a love for solving complex problems.

    • Experience in developing web applications using React and Node.js.

    • Worked on a team project that improved application performance by 30%.

    • Strong understanding of algorithms and data structures, demonstrated in competitive programming.

    • Enjoy collaborating with cross-functional teams to deliver high-...

  • Answered by AI
Round 2 - Coding Test 

Basic question about oops
String
Array

Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself.
Round 4 - Coding Test 

About project

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication skill is most important
Basic coding requiere
At least 1 project done by yourself

I applied via Campus Placement and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Group Discussion 

Topic provided, discuss among group of 5

Round 2 - Technical 

(2 Questions)

  • Q1. Polymorphism, Encapsulation, OOPs concepts
  • Q2. Beginner level DSA question
Round 3 - HR 

(1 Question)

  • Q1. Asked about completed and ongoing projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Just make sure to learn the basics. Based on the experience, interviewers were supportive during the discussions.

L&T Technology Services Interview FAQs

How many rounds are there in L&T Technology Services Embedded Engineer interview?
L&T Technology Services interview process usually has 2-3 rounds. The most common rounds in the L&T Technology Services interview process are Resume Shortlist, Technical and Aptitude Test.
What are the top questions asked in L&T Technology Services Embedded Engineer interview?

Some of the top questions asked at the L&T Technology Services Embedded Engineer interview -

  1. Explain I2c diff btn i2c and spi diff btn hw and sw interr...read more
  2. what is microcontroller? have you worked on any microcontroller? c++ basics po...read more
  3. How does a computer boot ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.6/5

based on 5 interview experiences

Difficulty level

Easy 33%
Moderate 67%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

LTIMindtree Interview Questions
3.7
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 849 Interviews
DXC Technology Interview Questions
3.7
 • 841 Interviews
EXL Service Interview Questions
3.7
 • 805 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
NTT Data Interview Questions
3.8
 • 661 Interviews
Publicis Sapient Interview Questions
3.5
 • 645 Interviews
View all
L&T Technology Services Embedded Engineer Salary
based on 157 salaries
₹3.7 L/yr - ₹7 L/yr
11% less than the average Embedded Engineer Salary in India
View more details

L&T Technology Services Embedded Engineer Reviews and Ratings

based on 21 reviews

2.9/5

Rating in categories

2.4

Skill development

3.3

Work-life balance

2.5

Salary

2.1

Job security

3.1

Company culture

2.2

Promotions

2.5

Work satisfaction

Explore 21 Reviews and Ratings
Senior Engineer
6.2k salaries
unlock blur

₹6 L/yr - ₹13.3 L/yr

Engineer
4.8k salaries
unlock blur

₹4 L/yr - ₹8.2 L/yr

Technical Lead
2.3k salaries
unlock blur

₹13.5 L/yr - ₹23.5 L/yr

Project Lead
1.6k salaries
unlock blur

₹10.3 L/yr - ₹18 L/yr

Software Engineer
1.5k salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Explore more salaries
Compare L&T Technology Services with

LTIMindtree

3.7
Compare

DXC Technology

3.6
Compare

Mphasis

3.3
Compare

EXL Service

3.7
Compare
write
Share an Interview