Upload Button Icon Add office photos

Filter interviews by

L&T Technology Services Embedded Software Developer Interview Questions and Answers

Updated 30 Sep 2022

L&T Technology Services Embedded Software Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Aug 2022. 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 

(1 Question)

  • Q1. Regarding Embedded C
Round 3 - Technical 

(1 Question)

  • Q1. Communication Protocols and Embedded C

Interview Preparation Tips

Topics to prepare for L&T Technology Services Embedded Software Developer interview:
  • SPI
  • I2C
  • UART
  • CAN
  • Embedded C
Interview preparation tips for other job seekers - prepare for Embedded C , microcontrollers and communication protocols

Interview questions from similar companies

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

Multiple choice questions of embedded concepts

Round 2 - Coding Test 

Basic c programming questions

Interview Preparation Tips

Interview preparation tips for other job seekers - knowledge on c programming and embedded c will be good to go.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Case Study 

UART protocol, Data structure

Round 2 - Coding Test 

Function pointers , Communication protocols

Interview Preparation Tips

Topics to prepare for Cyient Embedded Software Developer interview:
  • C

I applied via Walk-in and was interviewed in May 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Storage classes, pointers, structure, union, memory allocation
  • Q2. Projects, used protocols

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with the concepts of C and embedded technologies. Be proficient with the projects done and better communication skill will be expected.
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
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:
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 - 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

I applied via Naukri.com and was interviewed in Jun 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 - Technical 

(4 Questions)

  • Q1. They generally asked about basic C question in pointers,function pointers,callback function
  • Q2. Write a program on finding little or big endian,no of bits set in bit magic,
  • Ans. 

    Program to find endianness and number of bits set in bit magic.

    • Use bitwise operators to check endianness

    • Count number of set bits using bitwise AND and right shift

    • Use pre-defined functions for endianness in some programming languages

    • Endianness can affect network communication and file formats

  • Answered by AI
  • Q3. Basic of rtos diff btw rtos and gpos core optimisation techniques used debug technique when fault occurs
  • Q4. Basic IPC concepts used in operating system
  • Ans. 

    IPC stands for Inter-Process Communication and is used for communication between processes in an operating system.

    • Shared memory

    • Message passing

    • Pipes

    • Sockets

    • Remote Procedure Calls (RPC)

    • Semaphores

    • Mutexes

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview is quite easy when you have strong Technical understanding and fundaments of C and Embedded concepts

Skills evaluated in this interview

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

After applying for drive through On Campus.From Hirepro Platform The mail was Triggered and in exam they conduct both Aptitude and Technical question from Embedded Systems,C,About 8051,8086 microcontrollers.After The next section Coding test Have Two Coding question Based Arrays Medium Level You Can do Coding In C or C++ or Phyton

Round 3 - Technical 

(10 Questions)

  • Q1. At first Interviewer as asked me to Introduce my self and after he has asked My favourite subjects
  • Q2. 1) which microcontroller you have used in Academics?
  • Ans. 

    I have used STM32 microcontroller in my academics.

    • I have worked on STM32F4 Discovery board for a project in my final year.

    • I have also used STM32CubeMX software for code generation and debugging.

    • I have experience in programming STM32 microcontrollers using C language.

  • Answered by AI
  • Q3. 2) About Linux Boot and How to Interface Raspberry pi
  • Q4. 3) About Interrupt service Routine
  • Q5. 4) About Real Operating Systems
  • Q6. 5) About Deadlock, Priority Inversion
  • Q7. 6) About Mutex and Semaphore
  • Q8. 7) To write program for Toggle particular But in C?
  • Ans. 

    To toggle a particular bit in C, use bitwise XOR operator with 1 at the desired bit position.

    • Use bitwise XOR operator (^) with 1 at the desired bit position to toggle it.

    • Example: To toggle the 3rd bit of a variable 'x', use x ^= (1 << 2);

    • Make sure to use the correct bit position starting from 0 for the least significant bit.

  • Answered by AI
  • Q9. 8) To write program to iterate an array using pointer
  • Ans. 

    Program to iterate an array using pointer

    • Declare a pointer variable and initialize it to the base address of the array

    • Use a loop to iterate through the array using the pointer variable

    • Increment the pointer variable in each iteration to point to the next element

    • Stop the loop when the pointer variable reaches the end of the array

  • Answered by AI
  • Q10. 9) Then about my projects

Interview Preparation Tips

Topics to prepare for Cyient Embedded Software Engineer interview:
  • Embedded Systems
  • Embedded C
  • C
  • C++
  • Phyton
  • RTOS
Interview preparation tips for other job seekers - Be confident on Your Core subjects and if you don't know anything don't drag it just say No.And Have good knowledge on C, Embedded systems,RTOS.

Skills evaluated in this interview

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

L&T Technology Services Interview FAQs

How many rounds are there in L&T Technology Services Embedded Software Developer interview?
L&T Technology Services interview process usually has 3 rounds. The most common rounds in the L&T Technology Services interview process are Technical and Resume Shortlist.
What are the top questions asked in L&T Technology Services Embedded Software Developer interview?

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

  1. Communication Protocols and Embedde...read more
  2. Regarding Embedde...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 L&T Technology Services interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
L&T Technology Services Embedded Software Developer Salary
based on 67 salaries
₹3 L/yr - ₹8 L/yr
14% less than the average Embedded Software Developer Salary in India
View more details

L&T Technology Services Embedded Software Developer Reviews and Ratings

based on 5 reviews

3.7/5

Rating in categories

4.0

Skill development

4.0

Work-Life balance

3.5

Salary & Benefits

3.6

Job Security

3.8

Company culture

3.3

Promotions/Appraisal

3.6

Work Satisfaction

Explore 5 Reviews and Ratings
Senior Engineer
5.3k salaries
unlock blur

₹5 L/yr - ₹17 L/yr

Engineer
4.7k salaries
unlock blur

₹1 L/yr - ₹8.7 L/yr

Technical Lead
2k salaries
unlock blur

₹8.5 L/yr - ₹28 L/yr

Project Lead
1.6k salaries
unlock blur

₹6 L/yr - ₹22.1 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

₹4.8 L/yr - ₹18.8 L/yr

Explore more salaries
Compare L&T Technology Services with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

Tech Mahindra

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview