Upload Button Icon Add office photos

L&T Technology Services

Compare button icon Compare button icon Compare

Filter interviews by

L&T Technology Services Java Developer Interview Questions and Answers

Updated 19 Dec 2023

6 Interview questions

A Java Developer was asked
Q. What project challenges have you faced, and how did you resolve them?
Ans. 

Resolved project challenges through effective problem-solving techniques.

  • Identified the root cause of the challenges

  • Collaborated with team members to brainstorm solutions

  • Implemented appropriate strategies to overcome obstacles

  • Tested and validated the implemented solutions

  • Documented the resolution process for future reference

A Java Developer was asked
Q. Explain the concepts of OOPS.
Ans. 

OOPs concepts are the fundamental principles of Object-Oriented Programming.

  • Encapsulation - binding data and methods together

  • Inheritance - reusing code and creating a hierarchy of classes

  • Polymorphism - ability of objects to take on many forms

  • Abstraction - hiding implementation details and showing only necessary information

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk(). Parent run() calls walk(). Chi ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
Q4. How do you sort a list of students based on their first name?
asked in Cognizant
Q5. What array list and linkedlist difference,how hashmap internally ... read more
A Java Developer was asked
Q. Write a program to reverse a string.
Ans. 

Reverse a given string using Java programming language.

  • Create a new empty string

  • Iterate through the original string from end to start

  • Append each character to the new string

  • Return the new string

A Java Developer was asked
Q. Write a program to collect all even numbers in a list using the Stream API.
Ans. 

WAP to collect all even no in list using stream API

  • Use stream() method to convert list to stream

  • Use filter() method to filter even numbers

  • Use collect() method to collect filtered numbers into a list

A Java Developer was asked
Q. Core string concept in depth
Ans. 

Core string concepts include immutability, string manipulation, and string comparison.

  • Strings in Java are immutable, meaning they cannot be changed once created.

  • String manipulation can be done using various methods like concatenation, substring, and replace.

  • String comparison can be done using equals() method for content comparison and == operator for reference comparison.

A Java Developer was asked
Q. All annotations in spring boot
Ans. 

Spring Boot has various annotations for different purposes.

  • SpringBootApplication - marks the main class of the application

  • RestController - marks a class as a RESTful controller

  • Autowired - marks a constructor, field, or setter method to be autowired by Spring

  • GetMapping/PostMapping/PutMapping/DeleteMapping - maps HTTP requests to methods

  • Component - marks a class as a Spring component

  • Service - marks a class as a serv...

L&T Technology Services Java Developer Interview Experiences

2 interviews found

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 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 

Theory plus coding questions

Round 3 - Technical 

(5 Questions)

  • Q1. Core Java , spring boot questions, project
  • Q2. Project challenges how resolved
  • Ans. 

    Resolved project challenges through effective problem-solving techniques.

    • Identified the root cause of the challenges

    • Collaborated with team members to brainstorm solutions

    • Implemented appropriate strategies to overcome obstacles

    • Tested and validated the implemented solutions

    • Documented the resolution process for future reference

  • Answered by AI
  • Q3. Difficult situation in project while working with team how resolved
  • Ans. 

    I resolved a difficult situation in a project by facilitating open communication and collaboration within the team.

    • Encouraged team members to openly discuss their concerns and perspectives

    • Facilitated brainstorming sessions to come up with solutions together

    • Assigned tasks based on team members' strengths and expertise

    • Implemented regular check-ins to monitor progress and address any issues promptly

  • Answered by AI
  • Q4. Core string concept in depth
  • Ans. 

    Core string concepts include immutability, string manipulation, and string comparison.

    • Strings in Java are immutable, meaning they cannot be changed once created.

    • String manipulation can be done using various methods like concatenation, substring, and replace.

    • String comparison can be done using equals() method for content comparison and == operator for reference comparison.

  • Answered by AI
  • Q5. Soft skills questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparation level is good
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

(2 Questions)

  • Q1. WAP Reverse a String ?
  • Q2. Explain what is oops concepts?
Round 3 - Technical 

(2 Questions)

  • Q1. WAP to collect all even no in list using stream API
  • Q2. All annotations in spring boot
  • Ans. 

    Spring Boot has various annotations for different purposes.

    • SpringBootApplication - marks the main class of the application

    • RestController - marks a class as a RESTful controller

    • Autowired - marks a constructor, field, or setter method to be autowired by Spring

    • GetMapping/PostMapping/PutMapping/DeleteMapping - maps HTTP requests to methods

    • Component - marks a class as a Spring component

    • Service - marks a class as a service l...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Explain the project you had done

Interview Preparation Tips

Interview preparation tips for other job seekers - Be patient, keep practicing,learn new things. Learn all linear and non linear data structures

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about L&T Technology Services?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 100 Minutes
Round difficulty - Medium

  • Q1. 

    Change Start Node Problem Statement

    You are provided with a singly linked list and an integer K. The objective is to make the Kth node from the end of the linked list the starting node of the linked list.

    ...
  • Ans. 

    Given a singly linked list and an integer K, rearrange the list such that the Kth node from the end becomes the starting node.

    • Traverse the linked list to find the length and the Kth node from the end.

    • Update the pointers to rearrange the list accordingly.

    • Handle edge cases like K being equal to 1 or the length of the list.

  • Answered by AI
  • Q2. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    Check if given strings containing parentheses are balanced or not.

    • Use a stack to keep track of opening parentheses

    • Iterate through the string and push opening parentheses onto the stack

    • When a closing parentheses is encountered, pop from the stack and check if it matches the corresponding opening parentheses

    • If stack is empty at the end and all parentheses are matched, the string is balanced

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

  • Q1. 

    Alien Dictionary Problem Statement

    You are provided with a sorted dictionary (by lexical order) in an alien language. Your task is to determine the character order of the alien language from this dictiona...

  • Ans. 

    Given a sorted alien dictionary in an array of strings, determine the character order of the alien language.

    • Iterate through the dictionary to build a graph of character dependencies based on adjacent words.

    • Perform a topological sort on the graph to determine the character order.

    • Return the character array representing the order of characters in the alien language.

  • Answered by AI
  • Q2. 

    Chocolate Distribution Problem

    You are given an array/list CHOCOLATES of size 'N', where each element represents the number of chocolates in a packet. Your task is to distribute these chocolates among 'M'...

  • Ans. 

    Distribute chocolates among students to minimize the difference between the largest and smallest number of chocolates.

    • Sort the array of chocolates in ascending order.

    • Iterate through the array and find the minimum difference between the elements by considering 'M' elements at a time.

    • Return the minimum difference found as the result.

  • Answered by AI
Round 3 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

  • Q1. 

    Inplace Rotate Matrix 90 Degrees Anti-Clockwise

    You are provided with a square matrix of non-negative integers of size 'N x N'. The task is to rotate this matrix by 90 degrees in an anti-clockwise directi...

  • Ans. 

    Rotate a square matrix by 90 degrees anti-clockwise without using extra space.

    • Iterate through each layer of the matrix from outer to inner layers

    • Swap elements in groups of 4 to rotate them in place

    • Handle odd-sized matrices separately by adjusting the loop boundaries

  • Answered by AI
  • Q2. 

    Flip The Bits Problem Statement

    Given a binary string S of length N where initially all characters are '1', perform exactly M operations, choosing from four specific operations, and determine how many dis...

  • Ans. 

    Count the number of distinct final strings possible after performing a given number of operations on a binary string.

    • Iterate through all possible combinations of operations to determine the final string after each operation.

    • Use bitwise operations to efficiently flip the bits based on the chosen operation.

    • Keep track of distinct final strings using a set data structure.

    • Return the size of the set as the number of distinct...

  • Answered by AI
Round 4 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Medium

  • Q1. 

    Next Greater Element Problem Statement

    Given a list of integers of size N, your task is to determine the Next Greater Element (NGE) for every element. The Next Greater Element for an element X is the firs...

  • Ans. 

    Find the Next Greater Element for each element in a list of integers.

    • Iterate through the list of integers from right to left.

    • Use a stack to keep track of elements for which the Next Greater Element is not yet found.

    • Pop elements from the stack until a greater element is found or the stack is empty.

    • Assign the Next Greater Element as the top element of the stack or -1 if the stack is empty.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute of Technology, Manipur. I applied for the job as SDE - 1 in BengaluruEligibility criteriaAbove 7 CGPALarsen & Toubro Infotech (LTI) interview preparation:Topics to prepare for the interview - Data Structures, DBMS, OOPS, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice Medium level question.
Tip 2 : Do atleast 2 projects
Tip 3 : More Focus on your Communication skill

Application resume tips for other job seekers

Tip 1 : Full Command on your resume and make short atleast 1 page with normal color and font.
Tip 2 : Have mentioned some good projects on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Tr1- difference between switch case and if else, write the code for sorting
  • Ans. 

    Switch case is used for multiple conditions while if else is for binary conditions. Sorting can be done using various algorithms.

    • Switch case is faster than if else for multiple conditions

    • If else is more readable for binary conditions

    • Sorting can be done using bubble sort, insertion sort, quick sort, etc.

    • Example code for bubble sort: for(i=0;iarr[j+1]){swap(&arr[j],&arr[j+1]);}}}

  • Answered by AI
  • Q2. Tr2-difference between compiler and interpreter, Solve a challange on their own coding platform with proper output
  • Ans. 

    Difference between compiler and interpreter with a coding challenge

    • Compiler translates the entire code into machine language before execution while interpreter translates line by line during execution

    • Compiler generates an executable file while interpreter does not

    • Compiler is faster but debugging is harder while interpreter is slower but debugging is easier

    • Coding challenge: Write a program to find the sum of two numbers...

  • Answered by AI
  • Q3. Oops concept

I appeared for an interview in Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

In this round, there were 2 sections one for aptitude another for coding. The coding section consists of 2 questions and one has to attempt any one of them. And webcam will be active through all the assessment process.

  • Q1. 

    Sum of Squares of First N Natural Numbers Problem Statement

    You are tasked with finding the sum of squares of the first N natural numbers for given test cases.

    Input:

    The first line contains an integer ...
  • Ans. 

    Calculate the sum of squares of the first N natural numbers for given test cases.

    • Read the number of test cases 'T'

    • For each test case, read the value of 'N'

    • Calculate the sum of squares of the first 'N' natural numbers

    • Output the result for each test case

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

2 questions were asked in this section out of which we have to answer anyone

  • Q1. 

    Sum of Squares of First N Natural Numbers Problem Statement

    You are tasked with finding the sum of squares of the first N natural numbers for given test cases.

    Input:

    The first line contains an integer ...
  • Ans. 

    Calculate the sum of squares of the first N natural numbers for given test cases.

    • Read the number of test cases 'T'

    • For each test case, read the value of 'N'

    • Calculate the sum of squares of the first 'N' natural numbers

    • Output the result for each test case

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

It was a problem solving round and only one coding question was asked

  • Q1. 

    Reverse a String Problem Statement

    Given a string STR containing characters from [a-z], [A-Z], [0-9], and special characters, determine the reverse of the string.

    Input:

    The input starts with a single i...
  • Ans. 

    Reverse a given string containing characters from [a-z], [A-Z], [0-9], and special characters.

    • Iterate through the characters of the string from end to start and append them to a new string to get the reversed string.

    • Use built-in functions like reverse() or StringBuilder in languages like Python or Java for efficient reversal.

    • Ensure to handle special characters and numbers while reversing the string.

    • Consider edge cases ...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Kalinga Institute of Industrial Technology. I applied for the job as Software Developer in BengaluruEligibility criteriaAbove 6.5 CGPAMindtree interview preparation:Topics to prepare for the interview - Programming in C, Programming in C++, Programming in Python, DBMS,DSA,Went through my resume well, Details about projectTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : First go through your own resume very well as most of the company first ask questions from one's resume. Prepare what to say if they ask you about the projects you mentioned in your resume that's why never fake your resume. Be confident with what you have

Tip 2 : Obviously if you are applying for software developer role you should have basic concepts of the programming languages you learned in your college days like C, C++, Java etc if you don't know a little too then I suggest you to learn some basics first in any particular language and then practice them in IDE. As now most of the interviews are virtual so it's good to practice writing code in IDE as they often can ask you to solve some basci questions like string reversal, check palindrome or not like that. 

Tip 3 : You should have good communication skill. Good communication doesn't mean fluent english communication means interact with the receuiter in such a manner that he can understand the point you are trying to mark. Be confident, don't lie in any ways if you don't have correct answe for a question and you know that directly say NO you don't know this answer rather than replying with stupid answers and other side recruiter gets a little bit disappointed as you wasted some times of him for this kind of answer. If you know the answer instead of saying fluently try to speak the sentences with a little pause that makes recruiter understand that you really understand the topic you are talking about and that will be impressive.

Application resume tips for other job seekers

Tip 1 : Don't fake your resume
Tip 2 : Try to do good projects and mention them in resume
Tip 3 : As a fresher I suggest to prepare a resume of maximum 
2 pages.

Final outcome of the interviewRejected

I applied via Campus Placement and was interviewed before Sep 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was from college placement, basic question such as relative velocity, ratio and proportion, unitary method and 2 programmin question

Round 2 - Group Discussion 

Don't remember it was 2 years ago

Round 3 - One-on-one 

(6 Questions)

  • Q1. Tell me about yourself.
  • Q2. Brief description of myself and then the minor and major projects I worked upon.
  • Q3. Pattern question in any language
  • Q4. Provided the answer in python language
  • Q5. Basics of DAA, Os, DBMS
  • Q6. Don't remember the exact questions but answers were 3 out 5 correct and program was also correct

Interview Preparation Tips

Topics to prepare for LTIMindtree Software Developer interview:
  • Daa
  • DBMS
  • Operating Systems
  • Computer Networking
Interview preparation tips for other job seekers - Since it was college placement job most questions was from basics of what you study in CS

I applied via Naukri.com and was interviewed before Sep 2019. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. IQ Test
  • Q2. Machine Test
  • Q3. Face To Face

Interview Preparation Tips

Interview preparation tips for other job seekers - basically there are 3 rounds:-
1. IQ Test
2. Machine Test
3. Face to Face

IQ Test is not so tough but prepare well Machine Test
Machine Test Question are like :-
Q.1 - We declare a variable in C++ like "is_this_a_variable" and in Java like "IsThisAVariable". There is underscore in between every word and first alphabet of every word is in lowercase in C++ and in Java first alphabet is in capital without underscore. Create a program in which if user input a string in a C++ variable format it will convert the input in java variable format.

Q2. Count the frequency of a string.
user input string - pqhphi
output-
p - 2
q - 1
h - 2
i - 1

Be strong in algorithms and data structure.
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. All about SQL joins,data warehouse.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and answer only if you know the concept clearly.

I appeared for an interview before Aug 2016.

Interview Preparation Tips

Round: General and technical aptitude
Experience: There were questions on basics of programming and general questions on verbal,reasoning and quantitative.
Tips: Time will be short to answer all so keep watch on time

Round: Group Discussion
Experience: They segregated us in to batches and in our team there were 10 members.
Tips: Easy round
Duration: 15 minutes

Round: Telephonic
Experience: They tested my communication skill in that round

College Name: Dhanalakshmi college of engineering

Interview Questionnaire 

13 Questions

  • Q1. Indroduce yourself ?
  • Ans. 

    I am a software developer with experience in various programming languages and frameworks.

    • Proficient in Java, C++, and Python

    • Familiar with web development using HTML, CSS, and JavaScript

    • Experience with database management systems such as MySQL and MongoDB

    • Strong problem-solving and analytical skills

    • Worked on projects involving machine learning and artificial intelligence

  • Answered by AI
  • Q2. Difference between method overloading and methode overriding ?
  • Ans. 

    Method overloading is having multiple methods with the same name but different parameters. Method overriding is having a subclass method with the same name and parameters as a superclass method.

    • Method overloading is used to provide different ways of calling the same method with different parameters.

    • Method overriding is used to provide a specific implementation of a method in a subclass that is already defined in the su...

  • Answered by AI
  • Q3. Difference between switch case and if else statement?
  • Ans. 

    Switch case is used for multiple conditions while if else is used for binary conditions.

    • Switch case is faster than if else for multiple conditions.

    • If else can handle complex conditions while switch case cannot.

    • Switch case can only compare values of the same data type.

    • If else can handle null values while switch case cannot.

    • Example: switch (day) { case 1: console.log('Monday'); break; case 2: console.log('Tuesday'); brea...

  • Answered by AI
  • Q4. What is interface and abstract class?
  • Ans. 

    Interface and abstract class are both used for abstraction in object-oriented programming.

    • An interface is a collection of abstract methods that define a contract for a class to implement.

    • An abstract class is a class that cannot be instantiated and may contain abstract methods.

    • Interfaces are used to achieve multiple inheritance in Java.

    • Abstract classes can have non-abstract methods and instance variables.

    • An example of a...

  • Answered by AI
  • Q5. Whats is polymorphisom?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • It allows objects of different classes to be treated as if they were objects of the same class.

    • It is achieved through method overriding and method overloading.

    • Example: A shape class can have multiple subclasses like circle, square, etc. and all can be treated as shapes.

    • Example: A method can have different implementations in different classes but with the sa...

  • Answered by AI
  • Q6. What is inherritance ?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reusability and saves time and effort in writing new code.

    • The existing class is called the parent or base class, and the new class is called the child or derived class.

    • The child class inherits all the properties and methods of the parent class and can also add its ...

  • Answered by AI
  • Q7. Default case in switch case
  • Ans. 

    Default case in switch case statement

    • Default case is executed when no other case matches the switch expression

    • It is optional and can be placed anywhere in the switch statement

    • It is often used to handle unexpected input or errors

    • It should always be the last case in the switch statement

  • Answered by AI
  • Q8. Introduce yourself apart from resume?
  • Ans. 

    I am a passionate software developer with a strong background in web development and a love for problem-solving.

    • Experienced in HTML, CSS, JavaScript, and various web development frameworks

    • Proficient in backend development using languages like Java, Python, and Node.js

    • Familiar with database management systems such as MySQL and MongoDB

    • Strong problem-solving skills and ability to work well in a team environment

  • Answered by AI
  • Q9. What is your weaknesses ?
  • Ans. 

    I tend to get overly focused on details, which can sometimes slow down my progress.

    • I have a tendency to spend too much time on perfecting small details

    • I sometimes struggle with prioritizing tasks due to my focus on details

    • I am working on improving my time management skills to balance detail-oriented work with efficiency

  • Answered by AI
  • Q10. Do you have any offer from any other company ?
  • Ans. 

    Yes, I have received offers from two other companies.

    • Received offers from Company A and Company B

    • Currently evaluating all offers to make an informed decision

    • Considering factors like company culture, growth opportunities, and compensation

  • Answered by AI
  • Q11. Which company would you like to join apart from sapient ?
  • Ans. 

    I would like to join Google because of their innovative projects and work culture.

    • Google is known for its cutting-edge technology and innovative projects.

    • They have a strong focus on employee well-being and work-life balance.

    • Google offers opportunities for career growth and development.

    • The company has a diverse and inclusive work culture.

    • Google is a leader in the tech industry with a global presence.

  • Answered by AI
  • Q12. Have you ever worked in a team?
  • Ans. 

    Yes, I have worked in multiple teams in various projects.

    • Worked in a team of developers to create a new software application

    • Collaborated with designers, testers, and project managers to meet project deadlines

    • Participated in daily stand-up meetings to discuss progress and roadblocks

  • Answered by AI
  • Q13. 8 metals bolls are similar ?
  • Ans. 

    Yes, they are similar.

    • All 8 metal balls are of the same material.

    • They have the same size and weight.

    • They have the same physical properties.

    • They are interchangeable in any given situation.

  • Answered by AI

Interview Preparation Tips

College Name: NIT Meghalaya

Skills evaluated in this interview

L&T Technology Services Interview FAQs

How many rounds are there in L&T Technology Services Java Developer interview?
L&T Technology Services interview process usually has 3-4 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 Java Developer 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 Eclipse, Enterprise Architecture, Hibernate, J2Ee and Java.
What are the top questions asked in L&T Technology Services Java Developer interview?

Some of the top questions asked at the L&T Technology Services Java Developer interview -

  1. WAP to collect all even no in list using stream ...read more
  2. Explain what is oops concep...read more
  3. Project challenges how resol...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.5/5

based on 4 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
L&T Technology Services Java Developer Salary
based on 59 salaries
₹2.5 L/yr - ₹7 L/yr
36% less than the average Java Developer Salary in India
View more details

L&T Technology Services Java Developer Reviews and Ratings

based on 4 reviews

2.0/5

Rating in categories

1.8

Skill development

2.6

Work-life balance

2.4

Salary

1.7

Job security

3.4

Company culture

1.6

Promotions

2.6

Work satisfaction

Explore 4 Reviews and Ratings
Senior Engineer
6.2k salaries
unlock blur

₹6 L/yr - ₹13.2 L/yr

Engineer
4.8k salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Technical Lead
2.3k salaries
unlock blur

₹13.5 L/yr - ₹23.5 L/yr

Project Lead
1.6k salaries
unlock blur

₹10.3 L/yr - ₹18 L/yr

Software Engineer
1.5k salaries
unlock blur

₹3.9 L/yr - ₹9 L/yr

Explore more salaries
Compare L&T Technology Services with

LTIMindtree

3.7
Compare

DXC Technology

3.7
Compare

Mphasis

3.4
Compare

EXL Service

3.7
Compare
write
Share an Interview