L&T 2025 paper 1
Latest L&T placement paper with aptitude questions and solutions
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.
L&T 2025 paper 1
Latest L&T placement paper with aptitude questions and solutions
L&T 2025 paper 2
Additional 2025 L&T paper with detailed solutions
L&T 2025 paper 3
Another 2025 L&T paper with comprehensive solutions
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.
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.
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
Solution:
SI = (P × R × T)/100 = (5000 × 8 × 3)/100 = ₹1200.
Answer: ₹1200
Solution:
Old sum = 6 × 18 = 108. New sum = 108 − 12 + 24 = 120. New average = 120/6 = 20.
Answer: 20
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
Solution:
Pattern: Perfect squares 1²…5² → next 6²
Next term = 36.
Answer: 36
Solution:
Positions from left: A = 9, B = 50 − 9 + 1 = 42. Students between = 42 − 9 − 1 = 32.
Answer: 32
Solution:
TCP is connection-oriented; UDP is connectionless.
Answer: TCP
Solution:
This is the definition of Encapsulation (often paired with abstraction in interviews).
Answer: Encapsulation
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)
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)
Problem Statement: You can climb 1 or 2 steps. How many distinct ways to climb n stairs?
Example:
Input: n = 4Output: 5Solution (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
Based on recent candidate experiences from 2025 L&T interviews:
2025 Interview Process:
2025 Interview Trends:
Common 2025 Interview Topics:
Success Tips:
For detailed interview experiences from 2025, visit L&T Interview Experience page.
L&T 2024 papers
Previous year L&T placement papers with questions and solutions
L&T aptitude questions
Complete collection of L&T aptitude problems
L&T interview experience
Real interview experiences from successful candidates
L&T preparation guide
Comprehensive preparation strategy for L&T placement
L&T main page
Complete L&T placement guide with eligibility, process, and salary
Reliance · Adani · BHEL · TCS · Infosys · Wipro
Practice 2025 papers to stay updated with latest patterns and prepare effectively!