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 Technical Support Engineer Interview Questions and Answers for Experienced

Updated 20 Mar 2022

Larsen & Toubro Limited Technical Support Engineer Interview Experiences for Experienced

1 interview found

Round 1 - Technical 

(5 Questions)

  • Q1. I am technician tem leader
  • Q2. Building operation and maintenance
  • Q3. 13 years experience in technical supervision post.
  • Q4. Total 15 years experience.
  • Q5. Two years experience in technician post

Interview Preparation Tips

Interview preparation tips for other job seekers - Assets Operation and maintenance

Technical Support Engineer Jobs at Larsen & Toubro Limited

View all

Interview questions from similar companies

I applied via Company Website and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

TNQT: TCS National Qualifier Test

Round 2 - Technical 

(1 Question)

  • Q1. All technical questions related to your project and basic understanding of any programming language. Basically questions from your resume will be asked.
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. What is your family background?

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best, TCS is not tough to get into. But getting good project is a main cookie to be cracked.

I applied via Walk-in and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. .net questions - routing in asp.net MVC ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing . Prepare well for interview on .Net technology stack

I applied via Campus Placement and was interviewed before Jan 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Good

Round 2 - Technical 

(1 Question)

  • Q1. Basic question from C++.Some questions from Data structure and computer architecture.

Interview Preparation Tips

Topics to prepare for TCS Software Engineer interview:
  • C++
Interview preparation tips for other job seekers - Prepare well. Aptitude is not very easy so you have to prepare well.

I applied via Campus Placement and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They asked me the Fibonacci series then all about gate subjects like computer network and operating system

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a strong grip in programming and gate subjects..you will be selected for sure

Interview Questionnaire 

1 Question

  • Q1. Mostly related to the technology I applied for. Some coding related questions. Questions related to our expertise to test us.

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of c, matrix multiplication, sql,he said to write group by query and swapping program without using third variable

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with basics of the mentioned languages in the resume.

I applied via Company Website and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. By Rajkumar Bharathi, I stay at Trichy
  • Q2. I have completed my B.E from kalasalingam university in 2020, with a score of 6.33
  • Q3. I am a fresher need this jobs

Interview Preparation Tips

Interview preparation tips for other job seekers - Dress for the job or company

I was interviewed before Nov 2020.

Round 1 - Coding Test 

(6 Questions)

Round duration - 360 minutes
Round difficulty - Medium

They give you 6 hr. For 6 question but the good part is that you need to complete atleast 1 question and you are good to go.
Round will be cleared only after attempting one question and rest of the questions are for improving your rank.

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Find pairs of elements in an array that sum up to a given value, sorted in a specific order.

    • Iterate through the array and for each element, check if the complement (S - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list.

    • Sort the result list based on the criteria mentioned in the problem statement.

  • Answered by AI
  • Q2. 

    Minimum Number of Platforms Needed Problem Statement

    You are given the arrival and departure times of N trains at a railway station for a particular day. Your task is to determine the minimum number of pl...

  • Ans. 

    The task is to determine the minimum number of platforms needed at a railway station based on arrival and departure times of trains.

    • Sort the arrival and departure times in ascending order.

    • Use two pointers to keep track of overlapping schedules.

    • Increment platform count when a new train arrives before the previous one departs.

  • Answered by AI
  • Q3. 

    Minimise Sum Problem Statement

    You are given a matrix of 'N' rows and 'M' columns and a non-negative integer 'K'. Determine the minimum possible sum of all elements in each submatrix after performing at m...

  • Ans. 

    Given a matrix and a non-negative integer K, find the minimum possible sum of all elements in each submatrix after performing at most K decrements.

    • Iterate through all submatrices and find the minimum possible sum after performing decrements

    • Keep track of the number of decrements performed on each element

    • Use dynamic programming to optimize the solution

    • Ensure not to decrease any number below 0

    • Return the minimum possible s

  • Answered by AI
  • Q4. 

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

    • Use sliding window technique to find the minimum difference between the largest and smallest packets distributed to students.

    • Consider edge cases like when number of students is equal to number of packets.

  • Answered by AI
  • Q5. 

    Prime Time Again Problem Statement

    You are given two integers DAY_HOURS and PARTS. Consider a day with DAY_HOURS hours, which can be divided into PARTS equal parts. Your task is to determine the total ins...

  • Ans. 

    Calculate total instances of equivalent prime groups in a day divided into equal parts.

    • Divide the day into equal parts and find prime numbers in each part.

    • Identify prime groups where prime numbers occur at the same position in different parts.

    • Count the total instances of equivalent prime groups.

    • Ensure each hour in a prime group is in a different part of the day.

  • Answered by AI
  • Q6. 

    Constellation Identification Problem

    Given a matrix named UNIVERSE with 3 rows and 'N' columns, filled with characters {#, *, .}, where:

    • '*' represents stars.
    • '.' represents empty space.
    • '#' repre...
  • Ans. 

    The task is to identify constellations shaped like vowels within a matrix filled with characters {#, *, .}.

    • Iterate through the matrix to find 3x3 constellations shaped like vowels.

    • Check for vowels 'A', 'E', 'I', 'O', 'U' in each 3x3 constellation.

    • Print the vowels found in each constellation for each test case.

  • Answered by AI
Round 2 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Associate Software Engineer in MumbaiEligibility criteriaAbove 7 cgpaTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Data Structures, Python, Operating System, Algorithms, DBMSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : learn basics
Tip 2 : learn any oops language and practice.
Tip 3 : code as much as you can.

Application resume tips for other job seekers

Tip 1 : short and precise. Upto the point.
Tip 2 : keep few things aside from resume

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 45 minutes
Round difficulty - Hard

All mcqs should answer with in time limit should have a lot of practice to solve in exam

  • Q1. 

    Water Jug Problem Statement

    You have two water jugs with capacities X and Y liters respectively, both initially empty. You also have an infinite water supply. The goal is to determine if it is possible to...

  • Ans. 

    The Water Jug Problem involves determining if a specific amount of water can be measured using two jugs of different capacities.

    • Start by considering the constraints and limitations of the problem.

    • Think about how the operations allowed can be used to reach the target measurement.

    • Consider different scenarios and test cases to come up with a solution.

    • Implement a function that takes the capacities of the jugs and the targe...

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Easy and just basic questions very easy round

  • Q1. 

    Matrix Multiplication Task

    Given two sparse matrices MAT1 and MAT2 of integers with dimensions 'N' x 'M' and 'M' x 'P' respectively, the goal is to determine the resulting matrix produced by their multipl...

  • Ans. 

    Implement a function to multiply two sparse matrices and return the resulting matrix.

    • Create a function that takes two sparse matrices as input and returns the resulting matrix after multiplication.

    • Iterate through the non-zero elements of the matrices to perform the multiplication efficiently.

    • Ensure to handle the sparse nature of the matrices to optimize the multiplication process.

    • Consider the constraints provided to en...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 6 cgpaTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Dql, Data structures, Java, Operating system, Data scienceTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : preapre core subjects 
Tip 2 : be confident and answer clearly
Tip 3 : be strong with projects

Application resume tips for other job seekers

Tip 1 : good projects in ml and ai
Tip 2 : practical experience

Final outcome of the interviewSelected

Skills evaluated in this interview

Larsen & Toubro Limited Interview FAQs

How many rounds are there in Larsen & Toubro Limited Technical Support Engineer interview for experienced candidates?
Larsen & Toubro Limited interview process for experienced candidates usually has 1 rounds. The most common rounds in the Larsen & Toubro Limited interview process for experienced candidates are Technical.
How to prepare for Larsen & Toubro Limited Technical Support Engineer 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 Troubleshooting, AWS, Access Control System, Android and Azure.
What are the top questions asked in Larsen & Toubro Limited Technical Support Engineer interview for experienced candidates?

Some of the top questions asked at the Larsen & Toubro Limited Technical Support Engineer interview for experienced candidates -

  1. 13 years experience in technical supervision po...read more
  2. Two years experience in technician p...read more
  3. Building operation and maintena...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Tata Projects Interview Questions
4.2
 • 427 Interviews
Tata Group Interview Questions
4.2
 • 358 Interviews
Tata Technologies Interview Questions
3.6
 • 258 Interviews
TCE Interview Questions
3.8
 • 248 Interviews
Ashok Leyland Interview Questions
4.1
 • 239 Interviews
View all
Larsen & Toubro Limited Technical Support Engineer Salary
based on 41 salaries
₹1.8 L/yr - ₹5 L/yr
38% less than the average Technical Support Engineer Salary in India
View more details

Larsen & Toubro Limited Technical Support Engineer Reviews and Ratings

based on 10 reviews

4.2/5

Rating in categories

3.8

Skill development

3.9

Work-life balance

3.6

Salary

4.1

Job security

4.1

Company culture

3.7

Promotions

4.0

Work satisfaction

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

₹0 L/yr - ₹0 L/yr

Senior Engineer
3.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
1.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
1.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Construction Manager
1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Larsen & Toubro Limited with

Tata Group

4.2
Compare

Reliance Industries

4.0
Compare

Adani Group

3.9
Compare

Mahindra & Mahindra

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