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 Software Engineer Interview Questions, Process, and Tips

Updated 3 Mar 2025

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

View all 15 questions

L&T Technology Services Senior Software Engineer Interview Experiences

16 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I was interviewed before Mar 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Mostly asked c questions
  • Q2. Project related questions
Round 2 - Technical 

(1 Question)

  • Q1. Project related questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is the usage of Yield keyword
  • Ans. 

    Yield keyword is used in Python to pause and resume a generator function.

    • Yield keyword is used to return a value from a generator function and pause its execution.

    • When the generator function is called again, it resumes from where it was paused.

    • Yield can be used in a loop to generate a sequence of values without storing them all in memory.

    • Example: def my_generator(): yield 1 yield 2 yield 3

  • Answered by AI
  • Q2. How will you n number of parmeters to a function where you n is variable number and you don't know the parameters that will be received
  • Ans. 

    Use variadic arguments in C++ to handle variable number of parameters in a function

    • Use variadic arguments in C++ to create a function that can accept any number of parameters

    • Example: void myFunction(int firstParam, ...)

    • Access the parameters using va_list and va_start macros

    • Example: va_list args; va_start(args, firstParam); int nextParam = va_arg(args, int);

    • End the argument list with va_end macro

  • Answered by AI
  • Q3. SQL join query and use aggregate function in it
  • Ans. 

    SQL join query combines data from multiple tables based on a related column, and aggregate functions perform calculations on grouped data.

    • Use JOIN keyword to combine data from multiple tables based on a related column

    • Use aggregate functions like SUM, AVG, COUNT, etc. to perform calculations on grouped data

    • Example: SELECT orders.order_id, SUM(order_details.quantity) FROM orders JOIN order_details ON orders.order_id = or

  • Answered by AI
  • Q4. Software management framework that I am following, and different scrum terminologies
  • Ans. 

    I follow the Agile software management framework and am familiar with various Scrum terminologies.

    • Agile software management framework focuses on iterative development and collaboration.

    • Scrum is a specific Agile framework that includes roles like Scrum Master and Product Owner.

    • Some Scrum terminologies include Sprint, Daily Standup, Backlog, and User Stories.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your basics very well

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

Q1. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Java related and selenium related questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

General aptitude, C and C++ questions, OOPS

Round 2 - Technical 

(2 Questions)

  • Q1. Memory allocation
  • Q2. OOPS concepts, previous projects

L&T Technology Services interview questions for designations

 Senior Software Test Engineer

 (1)

 Software Engineer

 (23)

 Senior Software Developer

 (1)

 Embedded Software Engineer

 (4)

 Associate Software Engineer

 (2)

 Software Engineer Trainee

 (1)

 Junior Software Engineer

 (1)

 Software Engineer Level 1

 (1)

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Reverse the Linked List?
  • Ans. 

    Reverse a linked list by changing the direction of pointers.

    • Start with three pointers: current, previous, and next.

    • Iterate through the linked list, updating pointers to reverse the direction.

    • Return the new head of the reversed linked list.

  • Answered by AI
  • Q2. Reverse a string?
  • Ans. 

    To reverse a string, iterate through the characters and swap the characters from start to end.

    • Iterate through the characters of the string

    • Swap the characters from start to end until reaching the middle of the string

    • Return the reversed string

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic concept of programming should be strong.

Skills evaluated in this interview

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

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about Yourself
  • Q2. Project Details
Round 2 - Coding Test 

LInq, React Js and Sortings

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Prepared Depends on Your Luck
Interview experience
1
Bad
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. Asking about OOPS, pointers arrays design pattern, some basic C++ concepts
Round 3 - Technical 

(1 Question)

  • Q1. Similar to almost 1st technical round
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Technical questions on Angular
  • Q2. 1. Lazy Loading 2. Data sharing between components and other questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Questions on project
Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
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. Overall automotive and embedded technology questions.
  • Q2. Project mentioned on resume
Round 1 - Technical 

(2 Questions)

  • Q1. 1. Merge conflict in Git.
  • Ans. 

    Merge conflict occurs when two or more developers make changes to the same file in Git.

    • It happens when two or more developers make changes to the same file in Git.

    • Git is unable to automatically merge the changes and requires manual intervention.

    • Developers need to resolve the conflict by choosing which changes to keep and which to discard.

    • Common tools used to resolve merge conflicts include Git's command-line interface ...

  • Answered by AI
  • Q2. 2. Reverse a string without inbuilt function
  • Ans. 

    Reverse a string without inbuilt function

    • Iterate through the string from end to start

    • Append each character to a new string

    • Return the new string

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

(1 Question)

  • Q1. 1. Tell me about your current project
Round 3 - HR 

(1 Question)

  • Q1. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your skills and yourself.

Skills evaluated in this interview

L&T Technology Services Interview FAQs

How many rounds are there in L&T Technology Services Senior Software 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, One-on-one Round and Resume Shortlist.
What are the top questions asked in L&T Technology Services Senior Software Engineer interview?

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

  1. How will you n number of parmeters to a function where you n is variable number...read more
  2. Software management framework that I am following, and different scrum terminol...read more
  3. What is the usage of Yield keyw...read more

Tell us how to improve this page.

L&T Technology Services Senior Software Engineer Interview Process

based on 12 interviews

4 Interview rounds

  • Resume Shortlist Round
  • Technical Round
  • One-on-one Round
  • HR Round
View more
L&T Technology Services Senior Software Engineer Salary
based on 1.4k salaries
₹5.6 L/yr - ₹19 L/yr
26% less than the average Senior Software Engineer Salary in India
View more details

L&T Technology Services Senior Software Engineer Reviews and Ratings

based on 143 reviews

3.1/5

Rating in categories

3.0

Skill development

3.1

Work-life balance

2.6

Salary

3.0

Job security

3.1

Company culture

2.4

Promotions

2.8

Work satisfaction

Explore 143 Reviews and Ratings
Senior Engineer
5.9k salaries
unlock blur

₹5 L/yr - ₹17 L/yr

Engineer
4.6k salaries
unlock blur

₹3 L/yr - ₹8.2 L/yr

Technical Lead
2.1k salaries
unlock blur

₹8.5 L/yr - ₹30 L/yr

Project Lead
1.5k salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

₹5.6 L/yr - ₹19 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