Skip to content

L&T Placement Papers 2025

Overview

This page is a working set of Larsen & Toubro placement papers from 2025: from student reports questions, the 2025 online assessment pattern, and step-by-step solutions. Use it to see what Larsen & Toubro actually asked in the latest cycle, how hard the rounds were, and which themes (DSA, system design, aptitude, or role-specific topics) mattered most. Practice the problems below under timed conditions, then cross-check with the interview and preparation guides if you are targeting an upcoming Larsen & Toubro drive.

Download 2025 Placement Papers

Larsen toubro Online Assessment 2025 pattern

The 2025 exam pattern remains similar to 2024. For detailed exam pattern, see 2024 Papers.

Note: The pattern may have minor variations. Check the latest updates from the company.

Larsen & Toubro Placement Papers 2025 - actual questions & solutions

This section contains practice questions styled on Larsen & Toubro placement papers 2025 (recent-cycle pattern), with worked solutions. Use them as timed sectional drills - from student reports drives vary by college and role, so treat this as a high-signal practice bank, not an official paper dump.

Question 1

Q1: The ratio of ages of A and B is 3:5. After 10 years, the ratio becomes 5:7. Find A’s present age.

Solution:

Let ages be 3x and 5x.

(3x + 10)/(5x + 10) = 5/7 7(3x + 10) = 5(5x + 10) 21x + 70 = 25x + 50 x = 5 A’s age = 3×5 = 15 years.

Answer: 15 years

Question 2

Q2: Simple interest on ₹5000 at 8% per annum for 3 years is?

Solution:

SI = (P × R × T)/100 = (5000 × 8 × 3)/100 = ₹1200.

Answer: ₹1200

Question 3

Q3: Average of 6 numbers is 18. If one number 12 is replaced by 24, what is the new average?

Solution:

Old sum = 6 × 18 = 108. New sum = 108 − 12 + 24 = 120. New average = 120/6 = 20.

Answer: 20

Question 4

Q4: A number is increased by 25% and then decreased by 25%. Find the net percentage change.

Solution:

Let original = 100. After +25% → 125. After −25% → 125 − 31.25 = 93.75.

Net change = 100 − 93.75 = 6.25. Net % = 6.25% decrease (always a loss of (25/10)² %).

Answer: 6.25% decrease

Question 5

Q5: Find the next number in the series: 1, 4, 9, 16, 25, ?

Solution:

Pattern: Perfect squares 1²…5² → next 6²

Next term = 36.

Answer: 36

Question 6

Q6: In a row of 50 students, A is 9th from the left and B is 9th from the right. How many students are between A and B if A is to the left of B?

Solution:

Positions from left: A = 9, B = 50 − 9 + 1 = 42. Students between = 42 − 9 − 1 = 32.

Answer: 32

Question 7

Q7: Which protocol is connection-oriented at the transport layer?

Solution:

TCP is connection-oriented; UDP is connectionless.

Answer: TCP

Question 8

Q8: In OOP, hiding internal details and showing only essential features is called?

Solution:

This is the definition of Encapsulation (often paired with abstraction in interviews).

Answer: Encapsulation

Question 9: longest common prefix

Show solution

Problem Statement: Find the longest common prefix string amongst an array of strings.

Example:

Input: ["flower","flow","flight"]
Output: "fl"

Solution (Java):

public String longestCommonPrefix(String[] strs) {
if (strs.length == 0) return "";
String pref = strs[0];
for (int i = 1; i < strs.length; i++) {
while (!strs[i].startsWith(pref)) {
pref = pref.substring(0, pref.length() - 1);
if (pref.isEmpty()) return "";
}
}
return pref;
}

Time Complexity: O(S)
Space Complexity: O(1)

Question 10: maximum subarray sum

Show solution

Problem Statement: Find the contiguous subarray with the largest sum.

Example:

Input: [-2, 1, -3, 4, -1, 2, 1, -5, 4]
Output: 6 // [4, -1, 2, 1]

Solution (Java):

public int maxSubArray(int[] nums) {
int best = nums[0], cur = nums[0];
for (int i = 1; i < nums.length; i++) {
cur = Math.max(nums[i], cur + nums[i]);
best = Math.max(best, cur);
}
return best;
}

Time Complexity: O(n)
Space Complexity: O(1)

Question 11: climbing stairs

Show solution

Problem Statement: You can climb 1 or 2 steps. How many distinct ways to climb n stairs?

Example:

Input: n = 4
Output: 5

Solution (Java):

public int climbStairs(int n) {
if (n <= 2) return n;
int a = 1, b = 2;
for (int i = 3; i <= n; i++) {
int c = a + b; a = b; b = c;
}
return b;
}

Time Complexity: O(n)
Space Complexity: O(1)

Hiring volume

2025 Data: L&T is actively hiring 250-600 candidates in 2025. The company is conducting placement drives at 35+ colleges across India.

Salary packages

2025 Packages: ₹8-15 LPA for freshers (updated packages)

Process updates

2025 Updates: Latest assessment tools, improved interview process

Key insights from 2025 L&T Online Assessment

  1. Aptitude Section is Critical: Must perform well in quantitative and logical reasoning
  2. Technical MCQs: Strong emphasis on domain knowledge, engineering basics, digital transformation
  3. Verbal Ability: Important for communication-focused roles
  4. Time Management: 20-25 aptitude in 30-40 min + 15-20 technical in 25-30 min + 10-15 verbal in 15-20 min
  5. Success Rate: Only 20-25% cleared assessment and advanced to interviews
  6. Platform: L&T assessment platform
  7. Focus Areas: Quantitative aptitude, logical reasoning, domain knowledge, digital transformation, verbal ability
  8. Enhanced Emphasis: Optimal solutions and digital transformation knowledge

L&T 2025 interview experiences

Based on recent candidate experiences from 2025 L&T interviews:

2025 Interview Process:

  1. Online Assessment (60-90 minutes): Aptitude (20-25) + Technical (15-20) + Verbal (10-15)
  2. Technical Interview (45-60 minutes): Domain knowledge, engineering concepts, digital transformation, problem-solving
  3. HR Interview (30-45 minutes): Behavioral questions, company fit, motivation, engineering industry interest

2025 Interview Trends:

  • Increased emphasis on digital transformation and engineering innovation
  • More focus on optimal solutions and modern engineering technologies
  • Enhanced behavioral questions about innovation and adaptability
  • Questions about digital transformation and engineering innovation

Common 2025 Interview Topics:

  • Aptitude: Quantitative reasoning, logical reasoning, time and work, profit and loss
  • Technical: Domain knowledge, engineering concepts, digital transformation, problem-solving
  • Verbal: Comprehension, grammar, communication skills
  • Behavioral: Problem-solving approach, teamwork, motivation, engineering industry interest, digital passion

Success Tips:

  • Strong aptitude performance is essential - practice quantitative and logical reasoning
  • Understand engineering basics, digital transformation, and L&T’s diverse engineering portfolio
  • Prepare behavioral examples using STAR format
  • Understand L&T’s business model, digital transformation initiatives, and engineering services
  • Practice verbal ability - comprehension and grammar

For detailed interview experiences from 2025, visit L&T Interview Experience page.

Preparation tips for L&T 2025 pattern

  1. Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
  2. Domain Knowledge: Basic understanding of engineering, digital transformation, and L&T’s diverse portfolio
  3. Practice Previous Year Papers: Solve L&T assessment papers from 2020-2025 to understand evolving patterns
  4. Time Management: Practice completing 20-25 aptitude questions in 30-40 minutes
  5. Verbal Ability: Practice comprehension and grammar
  6. Digital Transformation: Understand L&T’s digital transformation initiatives and engineering innovation
  7. Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, digital passion
  8. Mock Tests: Take timed practice tests to improve speed and accuracy
  9. Engineering Focus: Understand engineering industry trends and L&T’s services
  10. Communication Skills: Practice articulating thoughts clearly

Comments & Suggestions

Similar companies

Reliance · Adani · BHEL · TCS · Infosys · Wipro