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
4.0

based on 18.2k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Larsen & Toubro Limited DOT NET Developer Interview Questions and Answers

Updated 23 Mar 2022

Larsen & Toubro Limited DOT NET Developer Interview Experiences

1 interview found

DOT NET Developer interview

user image AG Tech

posted on 15 Mar 2022

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
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 

(6 Questions)

  • Q1. Give some scenario in sql server about joins
  • Ans. 

    SQL Server joins are used to combine rows from two or more tables based on a related column between them.

    • Inner Join: Returns rows when there is at least one match in both tables.

    • Left Join: Returns all rows from the left table and the matched rows from the right table.

    • Right Join: Returns all rows from the right table and the matched rows from the left table.

    • Full Outer Join: Returns rows when there is a match in one of t...

  • Answered by AI
  • Q2. Sql constraints ,primary key,uniq key
  • Q3. Union and unionall difference
  • Ans. 

    UNION combines the result sets of two or more SELECT statements, while UNION ALL does the same but includes duplicates.

    • UNION removes duplicates from the result set, while UNION ALL includes all rows

    • UNION is slower than UNION ALL as it has to perform an additional step to remove duplicates

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column1 FROM table1 UNION ALL SELECT column1 FRO

  • Answered by AI
  • Q4. Validators in asp.net
  • Ans. 

    Validators in ASP.NET are used to validate user input on the client side before submitting the form to the server.

    • Validators can be used to check for required fields, data formats, and custom validation rules.

    • Common validators in ASP.NET include RequiredFieldValidator, RegularExpressionValidator, and CustomValidator.

    • Validators can be used in combination with validation controls like ValidationSummary to display error m...

  • Answered by AI
  • Q5. Viewstate in asp.net
  • Ans. 

    Viewstate is a hidden field in ASP.NET used to store state information of the page and its controls.

    • Viewstate is used to persist data between postbacks

    • It can be disabled to reduce page size and improve performance

    • Viewstate is encoded in Base64 format for security

  • Answered by AI
  • Q6. What are the selectors in css
  • Ans. 

    Selectors in CSS are patterns used to select the elements you want to style on a web page.

    • Selectors can target elements based on their tag name, class, ID, attributes, and more.

    • Examples include: element selector (p), class selector (.example), ID selector (#example), attribute selector ([type='text']), etc.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Telle about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Familiar with Agile methodologies

    • Worked on projects involving database management systems

    • Continuous learner and always looking to improve

  • Answered by AI
  • Q2. Deep knowledge in node js
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Javascript basic questions
  • Q2. Javascript basic questions
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
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at SIES College of Management Studies (SIESCMS) 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

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Logical and Maths ,Sql,Java

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(6 Questions)

  • Q1. Give some scenario in sql server about joins
  • Ans. 

    SQL Server joins are used to combine rows from two or more tables based on a related column between them.

    • Inner Join: Returns rows when there is at least one match in both tables.

    • Left Join: Returns all rows from the left table and the matched rows from the right table.

    • Right Join: Returns all rows from the right table and the matched rows from the left table.

    • Full Outer Join: Returns rows when there is a match in one of t...

  • Answered by AI
  • Q2. Sql constraints ,primary key,uniq key
  • Q3. Union and unionall difference
  • Ans. 

    UNION combines the result sets of two or more SELECT statements, while UNION ALL does the same but includes duplicates.

    • UNION removes duplicates from the result set, while UNION ALL includes all rows

    • UNION is slower than UNION ALL as it has to perform an additional step to remove duplicates

    • Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example: SELECT column1 FROM table1 UNION ALL SELECT column1 FRO

  • Answered by AI
  • Q4. Validators in asp.net
  • Ans. 

    Validators in ASP.NET are used to validate user input on the client side before submitting the form to the server.

    • Validators can be used to check for required fields, data formats, and custom validation rules.

    • Common validators in ASP.NET include RequiredFieldValidator, RegularExpressionValidator, and CustomValidator.

    • Validators can be used in combination with validation controls like ValidationSummary to display error m...

  • Answered by AI
  • Q5. Viewstate in asp.net
  • Ans. 

    Viewstate is a hidden field in ASP.NET used to store state information of the page and its controls.

    • Viewstate is used to persist data between postbacks

    • It can be disabled to reduce page size and improve performance

    • Viewstate is encoded in Base64 format for security

  • Answered by AI
  • Q6. What are the selectors in css
  • Ans. 

    Selectors in CSS are patterns used to select the elements you want to style on a web page.

    • Selectors can target elements based on their tag name, class, ID, attributes, and more.

    • Examples include: element selector (p), class selector (.example), ID selector (#example), attribute selector ([type='text']), etc.

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Based on your CV
Round 2 - Technical 

(1 Question)

  • Q1. Based on the project and skill they are in need
Round 3 - HR 

(2 Questions)

  • Q1. General HR and code of conduct explained
  • Q2. General discussions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Data types in SQL. Write prime number logical code in SQL
  • Ans. 

    SQL data types and prime number logic code

    • SQL data types include integer, float, varchar, etc.

    • To write prime number logic in SQL, use a loop to check if a number is divisible by any number less than itself

    • Example: DECLARE @num INT = 7; SELECT CASE WHEN COUNT(*) = 2 THEN 'Prime' ELSE 'Not Prime' END FROM (SELECT 1 AS num UNION ALL SELECT 2 UNION ALL SELECT 3 UNION ALL SELECT 4 UNION ALL SELECT 5 UNION ALL SELECT 6) AS n

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why do you want to join us?

Skills evaluated in this interview

Larsen & Toubro Limited Interview FAQs

How to prepare for Larsen & Toubro Limited DOT NET 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 C#, .Net, MVC, Javascript and ASP.Net.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Tata Projects Interview Questions
4.3
 • 405 Interviews
Tata Group Interview Questions
4.2
 • 357 Interviews
Tata Technologies Interview Questions
3.7
 • 251 Interviews
TCE Interview Questions
3.8
 • 241 Interviews
View all
Larsen & Toubro Limited DOT NET Developer Salary
based on 8 salaries
₹3.5 L/yr - ₹8 L/yr
8% less than the average DOT NET Developer Salary in India
View more details

Larsen & Toubro Limited DOT NET Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

4.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Assistant Manager
3.8k salaries
unlock blur

₹6.4 L/yr - ₹18 L/yr

Senior Engineer
3.4k salaries
unlock blur

₹4.5 L/yr - ₹12.5 L/yr

Engineer
1.2k salaries
unlock blur

₹1.6 L/yr - ₹9.4 L/yr

Manager
1.1k salaries
unlock blur

₹9.5 L/yr - ₹30 L/yr

Assistant Construction Manager
1k salaries
unlock blur

₹6 L/yr - ₹17 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