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 Embedded Software Developer Interview Questions and Answers

Updated 12 Jul 2021

Larsen & Toubro Limited Embedded Software Developer Interview Experiences

1 interview found

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

Interview Questionnaire 

7 Questions

  • Q1. Rate your self in c and based on that they will ask different level of questions :structure padding?
  • Q2. What is the difference between volatile constant Int a, constant volatile int b?
  • Ans. 

    volatile constant and constant volatile are different in terms of read and write access.

    • volatile constant means the value can be changed by external factors but cannot be modified by the program

    • constant volatile means the value cannot be changed by external factors but can be modified by the program

    • the order of volatile and constant keywords matter

    • example: volatile const int a = 5; const volatile int *b = &a;

    • a can be c...

  • Answered by AI
  • Q3. Questions about CAN protocol :about arbitration field.?
  • Q4. Question about UDS protocol :what services and what 19 service ?
  • Ans. 19 service is a read DTC(diagnostic trouble code)
  • Answered by niharika niha
  • Q5. What is sub function of 19 02?
  • Ans. 

    The sub function of 19 02 is not specified.

    • The question does not provide any context or information about the sub function of 19 02.

    • Without additional details, it is impossible to determine the specific sub function being referred to.

    • More information or clarification is needed to answer the question.

  • Answered by AI
  • Q6. Ask about projects which you have done previously?
  • Ans. I have said about my project explanation
  • Answered by niharika niha
  • Q7. If you have Work experience ask about previous job role

Interview Preparation Tips

Interview preparation tips for other job seekers - What ever you say infornt of HR... Say confidently...dats it

Skills evaluated in this interview

Interview questions from similar companies

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

Interview Questionnaire 

2 Questions

  • Q1. Project related questions.
  • Q2. Scenario based technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was technical . There were overall 3 rounds of interview , 2 technical and 1 hr.
The first technical was conducted by offshore lead and lasted around an hour
The second one involved manager ,senior manager from onshore along with lead and was completely technical.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Easy-Moderate, Coding problem related to string

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

(1 Question)

  • Q1. Difference between let, const and var
  • Ans. 

    let, const, and var are all used to declare variables in JavaScript, but they have different scopes and behaviors.

    • let: block-scoped variable, can be reassigned

    • const: block-scoped variable, cannot be reassigned, but its properties can be modified

    • var: function-scoped variable, can be reassigned

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What's your weakness, strength, tell me more about your last project
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial Round

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Scenario case was provided and I was asked to develop simulink model.
Round 2 - HR 

(1 Question)

  • Q1. Nothing unique about hr interview.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. V&V testing concepts
Round 2 - HR 

(1 Question)

  • Q1. About Alstom, previous projects, salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident to the answer. Prepare well for the interview
Interview experience
5
Excellent
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 

(3 Questions)

  • Q1. Mcdc , vnv techniques, v model
  • Q2. Oops concepts,ecp and bva
  • Q3. C language, structures, unions , storage classes
Round 3 - HR 

(1 Question)

  • Q1. Package negotiation
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Kotlin coroutine
  • Q2. Easy leetcode question
  • Q3. Different types of launch mode
  • Ans. 

    Launch modes in Android determine how a new instance of an activity is associated with the current task.

    • Standard - creates a new instance of an activity in the task

    • SingleTop - if the activity is at the top of the stack, it will not be recreated

    • SingleTask - creates a new task and puts the activity at the root of the task

    • SingleInstance - similar to SingleTask, but the activity is the only one in the task

  • Answered by AI
Round 1 - Technical 

(1 Question)

  • Q1. What is arbitration in can
  • Ans. 

    Arbitration in CAN is a process of resolving conflicts when multiple nodes try to transmit data simultaneously.

    • Arbitration is used in Controller Area Network (CAN) to ensure that only one node transmits data at a time.

    • Each node on the CAN bus has a unique identifier, and the node with the highest priority identifier gets to transmit its data first.

    • If two or more nodes try to transmit data at the same time, the arbitrat...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - can knowledge must. you should work on Automotive domain
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 Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

IT WAS BASIC AND EASY TO SOLVE

Round 2 - Technical 

(2 Questions)

  • Q1. OOPS CONCEPT OF JAVA
  • Ans. 

    OOPS concepts in Java refer to the principles of Object-Oriented Programming such as inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class B extends class A.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymorphism...

  • Answered by AI
  • Q2. JAVA SPRING BOOT

Interview Preparation Tips

Interview preparation tips for other job seekers - COVER YOUR BASIC PROPERLY

Skills evaluated in this interview

Larsen & Toubro Limited Interview FAQs

How to prepare for Larsen & Toubro Limited Embedded Software 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 Larsen & Toubro Limited. The most common topics and skills that interviewers at Larsen & Toubro Limited expect are Embedded C, C, C++, Device Drivers and I2C.
What are the top questions asked in Larsen & Toubro Limited Embedded Software Developer interview?

Some of the top questions asked at the Larsen & Toubro Limited Embedded Software Developer interview -

  1. What is the difference between volatile constant Int a, constant volatile int b...read more
  2. What is sub function of 19 ...read more
  3. Question about UDS protocol :what services and what 19 servic...read more

Tell us how to improve this page.

Larsen & Toubro Limited Embedded Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Tata Projects Interview Questions
4.2
 • 453 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
 • 147 Interviews
View all
Larsen & Toubro Limited Embedded Software Developer Salary
based on 16 salaries
₹3 L/yr - ₹10 L/yr
18% less than the average Embedded Software Developer Salary in India
View more details

Larsen & Toubro Limited Embedded Software Developer Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

2.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
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