L&T 2024 paper 1
Complete L&T placement paper with aptitude questions and solutions
This page collects Larsen & Toubro placement papers from 2024 with previous-year questions, solutions, and the 2024 exam pattern. It is useful when you want real drive history: what the OA looked like, which question types repeated, and how solutions were approached. Work through the papers below to build speed and accuracy, then compare against newer 2025 material so your prep matches both established Larsen & Toubro patterns and the latest shifts.
L&T 2024 paper 1
Complete L&T placement paper with aptitude questions and solutions
L&T 2024 paper 2
Additional 2024 L&T paper with detailed solutions
L&T 2024 paper 3
Another 2024 L&T paper with comprehensive solutions
| Section | Questions | Time | Difficulty | Focus Areas |
|---|---|---|---|---|
| Aptitude | 20-25 | 30-40 min | Medium | Quantitative, logical reasoning |
| Technical | 15-20 | 25-30 min | Medium | Domain knowledge, basics |
| Verbal Ability | 10-15 | 15-20 min | Easy-Medium | Comprehension, grammar |
Total: 50-60 questions, 60-90 minutes
Key Changes in 2024:
This section contains practice questions styled on Larsen & Toubro placement papers 2024 (previous-year 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:
SI = (P × R × T)/100 = (5000 × 8 × 3)/100 = ₹1200.
Answer: ₹1200
Solution:
Together rate = 1/12. B’s rate = 1/18.
A’s rate = 1/12 − 1/18 = (18−12)/(12×18) = 6/216. Days for A alone = 216/6 = 36 days.
Answer: 36 days
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:
Combined rate = 1/12 + 1/18 = (12+18)/(12×18). Time = 12×18/(12+18) = 7.2 hours.
Answer: 7.2 hours
Solution:
Grandfather’s only son = Ravi’s father. Son of Ravi’s father = Ravi himself (or his brother).
In standard puzzle framing with one son implied for the speaker context: the person is Ravi’s brother (or Ravi). Most campus keys take Brother.
Answer: Brother
Solution:
Pattern: ×1+6? Classic: ×1−2, ×2−3, ×3−4, ×4−5 → 8×1−2=6, 6×2−3=9, 9×3−4=23, 23×4−5=87, 87×5−6=429
Next term = 429.
Answer: 429
Solution:
OS uses demand paging (and sometimes segmentation) to implement virtual memory.
Answer: Demand paging
Solution:
FIFO = First In First Out → Queue. Stack is LIFO.
Answer: Queue
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: Rotate the array to the right by k steps.
Example:
Input: [1,2,3,4,5,6,7], k = 3Output: [5,6,7,1,2,3,4]Solution (Java):
public void rotate(int[] nums, int k) { k %= nums.length; reverse(nums, 0, nums.length - 1); reverse(nums, 0, k - 1); reverse(nums, k, nums.length - 1);}void reverse(int[] a, int l, int r) { while (l < r) { int t = a[l]; a[l++] = a[r]; a[r--] = t; }}Time Complexity: O(n)
Space Complexity: O(1)
Hiring volume
2024 Data: L&T hired 200-500 candidates from top engineering colleges in 2024. The company conducted placement drives at 30+ colleges across India.
Salary packages
2024 Packages: ₹8-15 LPA for freshers
Process changes
2024 Updates: Updated online assessment platform, new interview formats
Based on candidate experiences from 2024 L&T interviews:
2024 Interview Process:
Common 2024 Interview Topics:
Success Tips:
For detailed interview experiences, visit L&T Interview Experience page.
L&T 2025 papers
Latest L&T placement papers with current year questions
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 2024 papers to understand L&T pattern and prepare effectively!