Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Larsen & Toubro Limited Team. If you also belong to the team, you can get access from here

Larsen & Toubro Limited Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Larsen & Toubro Limited Software Developer Interview Questions and Answers for Experienced

Updated 21 Mar 2025

Larsen & Toubro Limited Software Developer Interview Experiences for Experienced

3 interviews found

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Tell me something about yourself.
  • Q2. Where do you envision yourself in five years?
  • Q3. What was your greatest achievement in your most recent job?
  • Q4. Whom do you admire most in your family & why?
  • Q5. What was the best thing that happened to you last year, and how did it impact you?
  • Q6. What is one skill you can confidently say you possess?

Interview Preparation Tips

Interview preparation tips for other job seekers - It was simple interview no technical questions asked
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy not much hard. Basic questions

Round 2 - Coding Test 

Dsa is must, logical questions are asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare for basic coding questions.

Software Developer Interview Questions Asked at Other Companies for Experienced

asked in Amazon
Q1. Fenwick Tree Problem Statement You are provided with an array/lis ... read more
asked in Infosys
Q2. 1. what is the difference between exception and error. How did u ... read more
asked in Amazon
Q3. Fire in the Cells Problem Statement Given a matrix MAT of size N ... read more
asked in Amazon
Q4. Find All Pairs Adding Up to Target Given an array of integers ARR ... read more
Q5. Chess Tournament Problem Statement In Ninjaland, a chess tourname ... read more

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

Interview Questionnaire 

1 Question

  • Q1. Question are asked majorly on SQL language

Interview Preparation Tips

Interview preparation tips for other job seekers - I have been selected as Axiom developer, and question are asked majorly about sql languages. Which is basic need for Axiom.

Software Developer Jobs at Larsen & Toubro Limited

View all

Interview questions from similar companies

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

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. About java and collections of java
  • Q2. Related to Data structure and coding
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What is sparksession
  • Ans. 

    SparkSession is the entry point for programming Spark with the Dataset and DataFrame API.

    • It replaces the older SQLContext and HiveContext in Spark 2.0 and later.

    • Allows users to create DataFrames and execute SQL queries.

    • Example: `val spark = SparkSession.builder.appName("MyApp").getOrCreate()`.

    • Supports reading data from various sources like JSON, Parquet, and JDBC.

    • Example: `val df = spark.read.json("path/to/file.json")`

  • Answered by AI
  • Q2. What spark architechture
  • Ans. 

    Apache Spark is a unified analytics engine for big data processing, with built-in modules for streaming, SQL, machine learning, and graph processing.

    • Spark operates on a cluster computing model, allowing distributed data processing.

    • It uses Resilient Distributed Datasets (RDDs) for fault tolerance and parallel processing.

    • Spark provides high-level APIs in Java, Scala, Python, and R, making it accessible to various develop...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - better good to have this place and multiple techs you can learn
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Why we use CAN in automotive?
  • Ans. 

    CAN is used in automotive for reliable and real-time communication between electronic control units.

    • CAN allows for communication between various electronic control units in a vehicle

    • It is reliable and can handle real-time data transmission

    • CAN is widely used in automotive for applications such as engine control, transmission control, and more

  • Answered by AI
  • Q2. What does a CAN frame look like ?
  • Ans. 

    A CAN frame is a data structure used in Controller Area Network (CAN) communication, consisting of an identifier, data, and control bits.

    • A CAN frame typically consists of an 11-bit or 29-bit identifier, which helps prioritize messages on the bus.

    • It also includes a data field, which can range from 0 to 8 bytes depending on the protocol version.

    • Control bits like the start of frame, arbitration field, control field, data ...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What is your current location? Are you able to commute to the office location?
  • Ans. 

    I am currently located in downtown Seattle and I am able to commute to the office location.

    • Located in downtown Seattle

    • Able to commute to office location

    • Have reliable transportation

  • Answered by AI
  • Q2. What is your expected salary?
  • Ans. 

    My expected salary is based on my experience, skills, and the market rate for software developers.

    • Consider my years of experience in software development.

    • Take into account my specialized skills and certifications.

    • Research the current market rate for software developers in this location.

    • Be open to negotiation based on the overall compensation package offered.

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. What is stack overloading?
  • Ans. 

    Stack overloading occurs when the stack memory is exceeded due to excessive function calls or large local variables.

    • Occurs when the stack memory limit is exceeded

    • Caused by excessive function calls or large local variables

    • Can lead to stack overflow error

  • Answered by AI
  • Q2. What are acsess specifiers
  • Ans. 

    Access specifiers determine the level of access to classes, methods, and variables in object-oriented programming languages.

    • Access specifiers include public, private, protected, and default.

    • Public allows access from any other class.

    • Private restricts access to only within the same class.

    • Protected allows access within the same package and subclasses.

    • Default (no specifier) restricts access to only within the same package.

  • Answered by AI
  • Q3. What is class and object
  • Ans. 

    A class is a blueprint for creating objects, while an object is an instance of a class.

    • A class defines the properties and behaviors of objects.

    • An object is a specific instance of a class.

    • Objects can have their own unique values for properties defined in the class.

    • Classes can be used to create multiple objects with similar characteristics.

    • Example: Class 'Car' defines properties like 'color' and 'model', while an object

  • Answered by AI
  • Q4. Expalin oops concepts?
  • Ans. 

    OOPs concepts are fundamental principles of object-oriented programming, including inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex imple...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic level of Q asked based on math ,english and programming

Round 2 - Coding Test 

Easy to medium level 7 Q asked and minimum 4 is compulsory for crack next round

Round 3 - One-on-one 

(1 Question)

  • Q1. It was like personal interview asked about familiy background and all
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Javascript basic questions
  • Q2. Javascript basic questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Logical and Maths ,Sql,Java

Larsen & Toubro Limited Interview FAQs

How many rounds are there in Larsen & Toubro Limited Software Developer interview for experienced candidates?
Larsen & Toubro Limited interview process for experienced candidates usually has 1-2 rounds. The most common rounds in the Larsen & Toubro Limited interview process for experienced candidates are Aptitude Test and Coding Test.
How to prepare for Larsen & Toubro Limited Software Developer interview for experienced candidates?
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 Larsen & Toubro Limited. The most common topics and skills that interviewers at Larsen & Toubro Limited expect are Architecture, Information Technology, Software Development, Architectural Design and C++.
What are the top questions asked in Larsen & Toubro Limited Software Developer interview for experienced candidates?

Some of the top questions asked at the Larsen & Toubro Limited Software Developer interview for experienced candidates -

  1. What was the best thing that happened to you last year, and how did it impact y...read more
  2. What was your greatest achievement in your most recent j...read more
  3. What is one skill you can confidently say you posse...read more

Tell us how to improve this page.

Larsen & Toubro Limited Software Developer Interview Process for Experienced

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Tata Projects Interview Questions
4.2
 • 450 Interviews
Tata Technologies Interview Questions
3.6
 • 263 Interviews
TCE Interview Questions
3.8
 • 251 Interviews
Saint-Gobain Interview Questions
4.0
 • 173 Interviews
Dilip Buildcon Interview Questions
4.0
 • 146 Interviews
View all
Larsen & Toubro Limited Software Developer Salary
based on 286 salaries
₹3 L/yr - ₹13 L/yr
9% less than the average Software Developer Salary in India
View more details

Larsen & Toubro Limited Software Developer Reviews and Ratings

based on 37 reviews

4.1/5

Rating in categories

3.8

Skill development

3.7

Work-life balance

3.3

Salary

4.1

Job security

3.7

Company culture

3.5

Promotions

3.8

Work satisfaction

Explore 37 Reviews and Ratings
Assistant Manager
3.9k salaries
unlock blur

₹5.3 L/yr - ₹18.4 L/yr

Senior Engineer
3.5k salaries
unlock blur

₹4.5 L/yr - ₹12.5 L/yr

Engineer
1.3k salaries
unlock blur

₹1.6 L/yr - ₹9.5 L/yr

Manager
1.1k salaries
unlock blur

₹9 L/yr - ₹29 L/yr

Civil Engineer
1k salaries
unlock blur

₹2.2 L/yr - ₹11 L/yr

Explore more salaries
Compare Larsen & Toubro Limited with

Tata Projects

4.2
Compare

Megha Engineering & Infrastructures

3.9
Compare

Shapoorji Pallonji Group

4.1
Compare

Kalpataru Projects International

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