Upload Button Icon Add office photos

Filter interviews by

L&T Technology Services Lead Engineer Interview Questions and Answers

Updated 27 Sep 2022

L&T Technology Services Lead Engineer Interview Experiences

1 interview found

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 27 Sep 2022

I applied via Company Website and was interviewed in Aug 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 - Technical 

(3 Questions)

  • Q1. No Technical job, so high level questions
  • Q2. Why are you choose LTTS
  • Q3. When are you able to join

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident for answering questions dont say No instead of I will learn

Lead Engineer Jobs at L&T Technology Services

View all

Interview questions from similar companies

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

I was interviewed in Jan 2025.

Round 1 - Technical 

(5 Questions)

  • Q1. What is the architecture of the Java Virtual Machine (JVM)?
  • Ans. 

    The Java Virtual Machine (JVM) is an abstract computing machine that enables a computer to run Java programs.

    • JVM is platform-independent and converts Java bytecode into machine code.

    • It consists of class loader, runtime data areas, execution engine, and native method interface.

    • JVM memory is divided into method area, heap, stack, and PC register.

    • Examples of JVM implementations include Oracle HotSpot, OpenJ9, and GraalVM.

  • Answered by AI
  • Q2. What is the default connection pooling in Spring Boot, and how can it be customized?
  • Ans. 

    The default connection pooling in Spring Boot is HikariCP, which can be customized through properties in the application.properties file.

    • HikariCP is the default connection pooling library in Spring Boot, known for its high performance and low overhead.

    • To customize the connection pooling, you can modify properties like 'spring.datasource.hikari.*' in the application.properties file.

    • For example, you can set maximum pool ...

  • Answered by AI
  • Q3. What are the best practices for optimizing a Spring Boot application?
  • Ans. 

    Best practices for optimizing a Spring Boot application

    • Use Spring Boot Actuator to monitor and manage application performance

    • Implement caching mechanisms like Spring Cache to reduce database calls

    • Optimize database queries and indexes for better performance

    • Use asynchronous processing with Spring's @Async annotation for non-blocking operations

    • Profile and analyze application performance using tools like VisualVM or JProfi

  • Answered by AI
  • Q4. What is a heap dump, and how can it be used to identify memory leaks?
  • Ans. 

    A heap dump is a snapshot of the memory usage of a Java application at a specific point in time.

    • Heap dumps can be generated using tools like jmap or VisualVM.

    • They provide detailed information about objects in memory, their sizes, and references.

    • Analyzing a heap dump can help identify memory leaks by pinpointing objects that are consuming excessive memory.

    • Common signs of memory leaks in a heap dump include a large numbe...

  • Answered by AI
  • Q5. How can you diagonally iterate through and print the elements of a 2D array?program
  • Ans. 

    Diagonally iterate through and print elements of a 2D array of strings.

    • Use nested loops to iterate through rows and columns of the 2D array.

    • Calculate the diagonal elements by incrementing row and column indices together.

    • Print the elements as you iterate through the diagonal of the array.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on core java concepts
  • Q2. Questions on SQL and Springboot
Round 2 - Technical 

(2 Questions)

  • Q1. Questions on Collection framework.
  • Q2. Questions on Springboot and core java
Round 3 - Client Interview 

(2 Questions)

  • Q1. Scenario based question
  • Q2. Stream API questions
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Nov 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. Microservices, java questions
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Which java version are you using in your project and what are the features in it
  • Ans. 

    We are using Java 11 in our project, which includes features like local variable type inference, HTTP client API, and improved security.

    • Java 11 introduced local variable type inference, allowing the compiler to infer the type of a variable based on the initializer.

    • The HTTP client API in Java 11 provides a more modern and flexible way to send HTTP requests and handle responses.

    • Java 11 also includes improved security fea...

  • Answered by AI
  • Q2. Which spring boot version are you using in your project and what are the features in it
  • Ans. 

    We are using Spring Boot version 2.5.2 in our project, which includes features like improved startup performance, enhanced actuator endpoints, and updated dependencies.

    • Spring Boot 2.5.2 offers improved startup performance compared to previous versions.

    • Enhanced actuator endpoints provide better monitoring and management capabilities.

    • Updated dependencies ensure compatibility with the latest libraries and frameworks.

  • Answered by AI
  • Q3. What is 12 factors approach for micro service
  • Ans. 

    The 12 factors approach is a methodology for building modern, scalable, and maintainable microservices.

    • Codebase: One codebase tracked in revision control, many deploys

    • Dependencies: Explicitly declare and isolate dependencies

    • Config: Store config in the environment

    • Backing services: Treat backing services as attached resources

    • Build, release, run: Strictly separate build and run stages

    • Processes: Execute the app as one or m...

  • Answered by AI
  • Q4. How to find the 3rd highest element in an unsorted array with duplicate using java 8.
  • Ans. 

    Use Java 8 streams to find the 3rd highest element in an unsorted array with duplicates.

    • Convert the array to a stream using Arrays.stream()

    • Use distinct() to remove duplicates

    • Sort the stream in descending order using sorted(Comparator.reverseOrder())

    • Skip the first two elements using skip(2)

    • Find and return the third element using findFirst()

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Coforge Lead Engineer interview:
  • Microservices
  • Java8

Skills evaluated in this interview

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

(3 Questions)

  • Q1. What are python libraries used as a data engineer?
  • Ans. 

    Python libraries commonly used by data engineers include Pandas, NumPy, Matplotlib, and Scikit-learn.

    • Pandas: Used for data manipulation and analysis.

    • NumPy: Provides support for large, multi-dimensional arrays and matrices.

    • Matplotlib: Used for creating visualizations and plots.

    • Scikit-learn: Offers machine learning algorithms and tools for data analysis.

  • Answered by AI
  • Q2. What is PySpark
  • Ans. 

    PySpark is a Python API for Apache Spark, a powerful open-source distributed computing system.

    • PySpark allows users to write Spark applications using Python programming language.

    • It provides high-level APIs in Python for Spark's functionality, making it easier to work with large datasets.

    • PySpark can be used for data processing, machine learning, graph processing, and more.

    • Example: PySpark can be used to perform data anal...

  • Answered by AI
  • Q3. Explain about your project Architecture
Round 2 - Technical 

(2 Questions)

  • Q1. What is Delta Lake and its benefits
  • Ans. 

    Delta Lake is an open-source storage layer that brings ACID transactions to Apache Spark and big data workloads.

    • Provides ACID transactions for big data workloads

    • Ensures data reliability and quality by enabling schema enforcement and data versioning

    • Supports batch and streaming data processing

    • Improves data quality and reliability by enabling schema enforcement and data versioning

  • Answered by AI
  • Q2. How will you create a end to end pipelines in Data Factory if my source and target are SQL and ASQL respectively?
  • Ans. 

    Create end to end pipelines in Data Factory with SQL and ASQL as source and target respectively.

    • Use Copy Data activity to move data from SQL source to ASQL target

    • Define linked services for SQL and ASQL in Data Factory

    • Create datasets for SQL and ASQL tables

    • Map columns between source and target datasets

    • Configure data flow activities for any transformations needed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall good

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Graphql , Web workers vs Service workers
  • Ans. 

    GraphQL is a query language for APIs, Web workers run scripts in background threads, Service workers are scripts that run in the background and can intercept network requests.

    • GraphQL is a query language for APIs that allows clients to request only the data they need.

    • Web workers run scripts in background threads separate from the main browser thread, improving performance by handling tasks concurrently.

    • Service workers a...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Technical related to my experience
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 in Jul 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Language specific questions
  • Ans. Basic and advanced C++ along with some tricky programs tow write
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Cyient Lead Engineer interview:
  • C++
  • C++11
  • Pointers
  • Advance C++
Interview preparation tips for other job seekers - Prepare well for whatever technology you want to work on.

Interview Questionnaire 

2 Questions

  • Q1. SCCM logs and Infra work flow
  • Q2. Read sccm client logs, site logs and have depth ideas on particular field.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was not that much good as junior resource took interview

L&T Technology Services Interview FAQs

How many rounds are there in L&T Technology Services Lead Engineer interview?
L&T Technology Services interview process usually has 2 rounds. The most common rounds in the L&T Technology Services interview process are Resume Shortlist and Technical.
How to prepare for L&T Technology Services Lead 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 CCTV Monitoring, Control System, Engineering Design, Hospital and Procurement.

Tell us how to improve this page.

L&T Technology Services Lead Engineer Salary
based on 98 salaries
₹9 L/yr - ₹30 L/yr
9% more than the average Lead Engineer Salary in India
View more details

L&T Technology Services Lead Engineer Reviews and Ratings

based on 10 reviews

2.9/5

Rating in categories

3.3

Skill development

2.8

Work-life balance

3.0

Salary

3.5

Job security

2.9

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 10 Reviews and Ratings
Lead Engineer

Mumbai

15-20 Yrs

Not Disclosed

Explore more jobs
Senior Engineer
5.3k salaries
unlock blur

₹5 L/yr - ₹17 L/yr

Engineer
4.8k 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.6k salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

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