Upload Button Icon Add office photos

L&T Technology Services

Compare button icon Compare button icon Compare

Filter interviews by

L&T Technology Services Senior Engineer Interview Questions, Process, and Tips

Updated 29 Jan 2025

Top L&T Technology Services Senior Engineer Interview Questions and Answers

  • Q1. 1. TCP v/s UDP 2. what is inline function 3. structure v/s union 4. pointers 5. c v/s c++ 6. Commands like GREP, KILL, PS, LS 7. questions on GIT 8. Deamon Process 9. fil ...read more
  • Q2. 3. Usage of Typedef for structures and Unions with the sample syntax?
  • Q3. Write C program to reverse the string without using built in function
View all 30 questions

L&T Technology Services Senior Engineer Interview Experiences

45 interviews found

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1. Microcontroller background Start up / reset sequence and NVIC/Interrupt Mapping
  • Q2. 2. Output Question on Structure declaration with int and int * and usage with Structure objects pointers?
  • Q3. 3. Usage of Typedef for structures and Unions with the sample syntax?
  • Ans. 

    Typedef is used to create an alias name for a data type, including structures and unions.

    • Typedef simplifies the code and makes it more readable.

    • Syntax: typedef struct/union { members } alias_name;

    • Example: typedef struct { int age; char name[20]; } Person;

    • Example: typedef union { int i; float f; } Number;

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Job Experience: Embedded Software Engineer with 3+ Years

1. Due to Pandemic, It was a virtual Google Meeting interview, took place for 30 mins. Introduction and Job History at the beginning. Microcontroller Technical questionnaire i.e startup, bootloader, communication protocols etc after that, at last, ended with C Programming Proficiency check.

2. Usually, Two Technical HR Rounds take place, but mine ended with a single tech interview.

3. HR/Talent Acquisition team is the worst by far, Job Description and Location weren't discussed before the interview. They saw my profile through the Naukri Job portal and contacted me on the same. They just asked me if I'm looking for a job change in Embedded Profile, I said Yes!. I was informed that JD will be shared before the interview apparently it wasn't disclosed. After Technical Interview, i asked HR she replied arrogantly without knowing JD and location how can you attend the interview.

4. Salary HR Discussion - Again being arrogant, I informed at the beginning itself, I had a notice period of 3 months. She was like "why did you attend it?". Notice Period was mentioned to a HR-Consultant itself. Also, they won't offer a hike of more than 30-40% of the previous salary. They aren't negotiable at all.

P.S: Please HR/Talent Acquisition team be kinda professional and supportive during the Hiring Process.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Oct 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 - Coding Test 

Had three coding questions

Round 3 - Technical 

(2 Questions)

  • Q1. C basic theory questions
  • Q2. Implement strcmp function Few questions related to Device drivers

Senior Engineer Interview Questions Asked at Other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
asked in Nagarro
Q2. Write a program: two input, one is N(any integer, lets say 3), se ... read more
asked in Tata Elxsi
Q3. What is Quality Assurance. Difference between Quality assurance a ... read more
Q4. Is it possible to work with multiple threads in core data? If so, ... read more
Q5. When you will perform Half or Full engine overhauling.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 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 

(3 Questions)

  • Q1. It was pure technical round based on my primary skill that is Angular. I was asked to write code and also asked various concepts of Angular12 and about third party libraries.
  • Q2. Observables and RXJS operators.
  • Q3. Lazy loading concept
Round 3 - HR 

(2 Questions)

  • Q1. About salary negotiation.
  • Q2. About team working qualities.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good in technical domain and answer confidently.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 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 

(3 Questions)

  • Q1. Embedded C questions are asked
  • Q2. Testing questions are asked
  • Q3. Coding test is taken

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear co cents of your work.questions will be on Embedded C.Also will be asked on Testing.

L&T Technology Services interview questions for designations

 Senior Leader Engineer

 (2)

 Senior Software Engineer

 (16)

 Senior Design Engineer

 (8)

 Senior Electrical Engineer

 (2)

 Senior Engineer Mechanical

 (2)

 Senior Quality Engineer

 (2)

 Senior Test Engineer

 (2)

 Senior QA Engineer

 (2)

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

I applied via Approached by Company and was interviewed before Jan 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 - Coding Test 

On Hackerearth. 2 coding questions from C programming and data structures.

Round 3 - Technical 

(5 Questions)

  • Q1. Explain structure padding
  • Ans. 

    Structure padding is the insertion of unused bytes between the members of a structure to align them in memory.

    • Padding is added to ensure that each member of the structure is aligned on a memory boundary that is a multiple of its size.

    • Padding is added by the compiler automatically.

    • Padding can affect the size of the structure and the performance of the program.

    • Example: struct example { char a; int b; char c; }; The size ...

  • Answered by AI
  • Q2. Explain dynamic memory allocation with example
  • Ans. 

    Dynamic memory allocation is the process of allocating memory during runtime.

    • Memory is allocated using functions like malloc(), calloc(), and realloc()

    • The allocated memory can be resized or freed using realloc() and free() functions

    • Example: int *ptr = (int*) malloc(5 * sizeof(int));

    • This allocates memory for 5 integers and returns a pointer to the first integer

  • Answered by AI
  • Q3. Explain memory layout in C
  • Ans. 

    Memory layout in C refers to the organization of memory in a C program.

    • Memory is divided into four segments: stack, heap, data, and code

    • Stack stores local variables and function calls

    • Heap stores dynamically allocated memory

    • Data stores global and static variables

    • Code stores the program instructions

    • Memory layout can be visualized using a memory map

  • Answered by AI
  • Q4. What are static and extern modifiers
  • Ans. 

    Static and extern are C++ modifiers used to control the scope and lifetime of variables and functions.

    • Static modifier is used to declare variables and functions that retain their values and scope throughout the program execution.

    • Extern modifier is used to declare variables and functions that are defined in another file or module.

    • Static variables are initialized only once and retain their values between function calls.

    • E...

  • Answered by AI
  • Q5. What are pointers? explain pass by reference
  • Ans. 

    Pointers are variables that store memory addresses. Pass by reference allows a function to modify the original variable.

    • Pointers store memory addresses

    • Pass by reference allows a function to modify the original variable

    • Example: int* ptr = # // ptr stores the memory address of num

    • Example: void modify(int* ptr) { *ptr = 10; } // modifies the value of the variable pointed to by ptr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on C programming and DSA. Also go through previous projects.

Skills evaluated in this interview

Get interview-ready with Top L&T Technology Services Interview Questions

Round 1 - Technical 

(1 Question)

  • Q1. Lab support testing and Validation

Interview Preparation Tips

Interview preparation tips for other job seekers - LTTS is service based company, It's very platform for ETC background

Senior Engineer Jobs at L&T Technology Services

View all
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic C programming concepts like DMA, structures, unions, storage classes, pointers
  • Q2. Embedded protocols like UART, SPI and I2C

Interview Questionnaire 

4 Questions

  • Q1. Dependency inversion
  • Q2. Some basic design patterns
  • Q3. Dispose and garbage collection
  • Q4. Wpf concepts

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. TCP v/s UDP 2. what is inline function 3. structure v/s...
  • Ans. 

    Interview questions for Senior Engineer position covering topics like TCP/UDP, inline functions, data structures, and more.

    • TCP is a reliable, connection-oriented protocol while UDP is unreliable and connectionless

    • Inline functions are small functions that are expanded by the compiler at the point of call

    • Structures are used to group related data while unions allow different data types to share the same memory space

    • Pointe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basic concepts of c, Linux and networking

I applied via Walk-in and was interviewed before Oct 2021. There were 4 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 

(1 Question)

  • Q1. Tell us about pass experience
Round 3 - Technical 

(1 Question)

  • Q1. Define various SQL queries and some questions on data management
Round 4 - HR 

(1 Question)

  • Q1. What are your expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Memorize the resume before the interview and practice well about JD

L&T Technology Services Interview FAQs

How many rounds are there in L&T Technology Services Senior 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 Technical, Resume Shortlist and HR.
How to prepare for L&T Technology Services Senior 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 L&T Technology Services. The most common topics and skills that interviewers at L&T Technology Services expect are AutoCAD, 3D Modeling, Process Simulation, Continuous Improvement and 3D Animation.
What are the top questions asked in L&T Technology Services Senior Engineer interview?

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

  1. 1. TCP v/s UDP ...read more
  2. 3. Usage of Typedef for structures and Unions with the sample synt...read more
  3. Write C program to reverse the string without using built in funct...read more
How long is the L&T Technology Services Senior Engineer interview process?

The duration of L&T Technology Services Senior Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

L&T Technology Services Senior Engineer Interview Process

based on 48 interviews

4 Interview rounds

  • Resume Shortlist Round
  • Technical Round - 1
  • Technical Round - 2
  • HR Round
View more
L&T Technology Services Senior Engineer Salary
based on 5.9k salaries
₹3.9 L/yr - ₹17 L/yr
5% more than the average Senior Engineer Salary in India
View more details

L&T Technology Services Senior Engineer Reviews and Ratings

based on 680 reviews

3.3/5

Rating in categories

3.1

Skill development

3.3

Work-life balance

2.6

Salary

3.3

Job security

3.1

Company culture

2.4

Promotions

3.0

Work satisfaction

Explore 680 Reviews and Ratings
Sr. Engineer - Ash Management

Rajpura

4-6 Yrs

Not Disclosed

Sr. Engineer - AHP

Rajpura

8-12 Yrs

Not Disclosed

Sr. Engineer

Pune

10-12 Yrs

Not Disclosed

Explore more jobs
Senior Engineer
5.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
4.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
2.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Lead
1.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare L&T Technology Services with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Tech Mahindra

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