Upload Button Icon Add office photos

L&T Technology Services

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

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

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

(2 Questions)

  • Q1. Autosar questions
  • Q2. Embedded c questions

HCLTech

There's no stopping you

We offer diverse programs to shape your career and future

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2023. 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 Resume tips
Round 2 - HR 

(1 Question)

  • Q1. Notice Period, Current CTC etc
Round 3 - Technical 

(1 Question)

  • Q1. Depends on what is your Job Profile

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
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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Technical about job profile
  • Q2. Point which we added in the resume
Round 3 - HR 

(2 Questions)

  • Q1. How many days notice period
  • Q2. Last drawn salary
  • Ans. 

    My last drawn salary was $80,000 per year.

    • My last drawn salary was $80,000 per year

    • I received a bonus of $5,000 annually

    • I also had stock options worth $10,000 per year

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Give your introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics

L&T Technology Services interview questions for designations

 Senior Leader Engineer

 (2)

 Senior Software Engineer

 (16)

 Senior Design Engineer

 (9)

 Senior Engineer Mechanical

 (2)

 Senior Electrical Engineer

 (2)

 Senior Test Engineer

 (2)

 Senior Quality Engineer

 (2)

 Senior QA Engineer

 (2)

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

I applied via Naukri.com and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

Eliminate duplicate lines from a text file.

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

I applied via Recruitment Consulltant and was interviewed in Mar 2023. 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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. Basic Stress Strain diagrams
  • Q2. Welding symbols, GD&T symbols
  • Q3. Previous projects and work experience
  • Ans. 

    I have worked on various projects in the past, including developing software solutions for a healthcare company and implementing a new system for a manufacturing company.

    • Developed software solutions for a healthcare company, including a patient management system and a telemedicine platform

    • Implemented a new system for a manufacturing company to streamline their production process and improve efficiency

    • Collaborated with ...

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

(3 Questions)

  • Q1. Material properties,
  • Q2. Bending Stress calculations
  • Q3. Power train selection Process
  • Ans. 

    The power train selection process involves evaluating various factors to choose the most suitable power train for a vehicle.

    • Consider the vehicle's intended use and performance requirements

    • Evaluate the available power train options and their capabilities

    • Assess factors such as fuel efficiency, emissions, and cost

    • Test and validate the chosen power train to ensure it meets performance and safety standards

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study Material properties, Strength of Materials properly

Senior Engineer Jobs at L&T Technology Services

View all
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 Dec 2022. There were 2 interview rounds.

Round 1 - Technical 

(12 Questions)

  • Q1. Write C program to multiply two matrices
  • Ans. 

    Program to multiply two matrices in C

    • Declare two matrices and initialize them with values

    • Use nested loops to iterate through rows and columns of the matrices

    • Perform multiplication and store the result in a new matrix

    • Print the resulting matrix

  • Answered by AI
  • Q2. Write C program to reverse the string without using built in function
  • Ans. 

    Program to reverse a string without using built-in functions in C

    • Create a function to reverse the string by swapping characters from start to end

    • Use two pointers, one pointing to the start of the string and the other pointing to the end

    • Swap the characters at the two pointers and move them towards each other until they meet in the middle

  • Answered by AI
  • Q3. What are the different types of storage classes
  • Ans. 

    The different types of storage classes in C programming are auto, register, static, and extern.

    • Auto storage class is the default storage class for all local variables.

    • Register storage class is used to define local variables that should be stored in a register instead of RAM.

    • Static storage class allows a variable to retain its value between function calls.

    • Extern storage class is used to give a reference of a global vari

  • Answered by AI
  • Q4. Difference between structure and union
  • Ans. 

    Structure is a user-defined data type that allows storing different types of data in a single variable, while union is a data type that allows storing only one type of data at a time.

    • Structure allows storing different types of data in a single variable, while union allows storing only one type of data at a time.

    • In a structure, each member has its own memory location, while in a union, all members share the same memory ...

  • Answered by AI
  • Q5. Write a c program to toggle the 3rd bit position
  • Ans. 

    Toggle the 3rd bit position in a given number using bitwise operators in C.

    • Use bitwise OR operator with 0x04 to toggle the 3rd bit position.

    • Example: num ^= (1 << 2) will toggle the 3rd bit position in 'num'.

  • Answered by AI
  • Q6. What is memory leak
  • Ans. 

    Memory leak is a situation where a program fails to release memory it has allocated, leading to a gradual loss of available memory.

    • Memory leaks occur when a program allocates memory but does not free it after use.

    • This can lead to a gradual loss of available memory, eventually causing the program or system to crash.

    • Common causes of memory leaks include improper management of dynamic memory allocation and circular refere...

  • Answered by AI
  • Q7. What is mean by Dangling pointer
  • Ans. 

    A dangling pointer is a pointer that points to a memory location that has been deallocated, leading to undefined behavior.

    • Dangling pointers can occur when memory is freed but the pointer is not set to NULL.

    • Accessing a dangling pointer can result in crashes or unexpected behavior.

    • Example: int *ptr = new int; delete ptr; // ptr is now a dangling pointer

  • Answered by AI
  • Q8. Determine the output for logic code on pointers
  • Ans. 

    The question involves determining the output for logic code on pointers.

    • Pointer arithmetic can be used to access elements in an array.

    • Pointers can be dereferenced to access the value they point to.

    • Pointers can be used to pass variables by reference.

  • Answered by AI
  • Q9. C program on linked list
  • Ans. 

    Implement a C program using linked list

    • Use struct to define the linked list node

    • Implement functions for insertion, deletion, and traversal

    • Handle edge cases like empty list or deleting the last node

  • Answered by AI
  • Q10. Convert little endian to big endian
  • Ans. 

    To convert little endian to big endian, reverse the order of bytes in the data.

    • Reverse the order of bytes in the data

    • For example, if you have the little endian value 0x12345678, in big endian it would be 0x78563412

  • Answered by AI
  • Q11. Basic Theory questions in C
  • Q12. Project Discussion
Round 2 - HR 

(1 Question)

  • Q1. HR related questions

Interview Preparation Tips

Topics to prepare for L&T Technology Services Senior Engineer interview:
  • Arrays
  • Pointers
  • Strings
  • Bit manipulation
  • Linked list
  • Basics of C
Interview preparation tips for other job seekers - Prepare the programming concepts in C language

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jul 2023. 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 Resume tips
Round 2 - Behavioral 

(1 Question)

  • Q1. Interviewer was good gave time for answers. Mostly asked on whatever was mentioned in resume and C basics.
Round 3 - HR 

(1 Question)

  • Q1. Intro, Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Asked for XLPA during HR round but when got offer it was X-2LPA.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Dec 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Why you want to join? Are you willing to relocate? CAD question?
  • Q2. For a change in industry
Round 3 - Technical 

(1 Question)

  • Q1. Stages on NPD Past projects Technical fundamentals
  • Ans. 

    New Product Development (NPD) involves multiple stages including ideation, design, development, testing, and launch.

    • Idea generation and screening

    • Concept development and testing

    • Design and engineering

    • Prototype development and testing

    • Commercialization and launch

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It will be easy. Just focus on your projects.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain past experience
  • Ans. 

    I have over 10 years of experience in cybersecurity, including roles in threat detection, incident response, and security architecture.

    • Experience in threat detection and analysis

    • Proficiency in incident response and handling security incidents

    • Knowledge of security architecture design and implementation

    • Familiarity with security tools and technologies such as SIEM, IDS/IPS, and endpoint protection

    • Strong understanding of c...

  • Answered by AI
  • Q2. Technical questions that are related to job description

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm, and confident about the content of your resume/experience

Just have good understanding of topics mentioned in job description.
Contribute & help others!
anonymous
You can choose to be anonymous

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.

Recently Viewed

INTERVIEWS

Ujjivan Small Finance Bank

No Interviews

INTERVIEWS

L&T Technology Services

No Interviews

INTERVIEWS

L&T Technology Services

300 top interview questions

SALARIES

Sutherland Global Services

SALARIES

Virtusa Consulting Services

SALARIES

Sutherland Global Services

SALARIES

Concentrix Corporation

INTERVIEWS

eClerx

No Interviews

LIST OF COMPANIES

Hewlett Packard Enterprise

Locations

CAMPUS PLACEMENT

Chitkara Collge of Pharmacy, Rajpura

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

Sopra Steria

Success to our employee's well-being? A work-life balance that's simply unbeatable.

L&T Technology Services Senior Engineer Salary
based on 5.9k salaries
₹5 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 687 reviews

3.2/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 687 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