Aptitude
Maruti Suzuki placement papers 2025
Overview
Section titled “Overview”Maruti Suzuki placement papers 2025. Primary filter: Maruti Online Test. Focus: Aptitude, mechanical/auto basics, GD.
Maruti Suzuki Aptitude Mock Quiz
Timed placement-style MCQs with score and explanations after you submit. Use it to check speed and accuracy before the real test.
Reasoning
In a row of 40 students, A is 11th from left and B is 31st from right. How many between A and B?
B from left = 40−31+1 = 10th. A is 11th. They are adjacent → 0 between.
Reasoning
Statements: All roses are flowers. Some flowers are red. Conclusions: I. Some roses are red. II. All red things are roses.
Analyzing the statements: - All roses are flowers (A → B) - Some flowers are red (B → C, some) Conclusion I: Some roses are red - Valid Conclusion II: All red things are roses - Invalid
Verbal
Choose the correct form: "Neither the teacher nor the students _____ present."
Correct answer: were
Quantitative
The LCM of 12 and 18 is:
LCM(12,18) = 36.
Quantitative
Find x: 3x + 7 = 22
3x = 15 → x = 5.
Quantitative
If "COMPUTER" is coded as "EQORWVGT", how is "KEYBOARD" coded?
Correct answer: MGADQCTF
Verbal
Find synonym of "Courageous"
Correct answer: Brave
Reasoning
Find the next number: 1, 8, 27, 64, 125, ?
Correct answer: 216
Quantitative
If "APPLE" is coded as "1225165", how is "MANGO" coded?
Pattern: A=1, B=2, C=3... Z=26 APPLE: A=1, P=16, P=16, L=12, E=5 → 1225165 MANGO: M=13, A=1, N=14, G=7, O=15 → 13114715
Verbal
Problem: Choose the correct sentence: a) The data are incorrect b) The data is incorrect c) The datas are incorrect
"Data" can be singular or plural, but in modern usage, it's often treated as singular. "The data is incorrect" is more commonly accepted.
Reasoning
Complete the series: AZ, BY, CX, ?
First letter +1, second −1 → DW.
Quantitative
A person walks 5 km at 5 km/h and 10 km at 10 km/h. Average speed is:
Time = 1 h + 1 h = 2 h. Average = 15/2 = 7.5 km/h.
Quantitative
In what ratio should water be mixed with milk costing ₹12 per liter to get a mixture worth ₹8 per liter?
Using alligation: Water (₹0) Milk (₹12) \ / \ / \ / \ / \ / ₹8 Ratio = (12-8):(8-0) = 4:8 = 1:2
Reasoning
Statements: All engineers are professionals. Some professionals are managers. Conclusions: I. Some engineers are managers. II. All managers are engineers.
Analyzing the statements: - All engineers are professionals (A → B) - Some professionals are managers (B → C, some) Conclusion I: Some engineers are managers - Since all engineers are professionals, and some professionals are managers, we can say some engineer
Verbal
Choose the correct sentence:
Neither takes singular verb; "options" is plural noun with of.
Your score
0/15(0%)
Review
Sample Maruti Suzuki Questions with Solutions
Section titled “Sample Maruti Suzuki Questions with Solutions”Practice-style questions (not leaked live papers).
Aptitude / Reasoning
Section titled “Aptitude / Reasoning”Q1: If 30% of x = 150, x = ?
Answer: 500
Explanation: 0.3x=150 => x=500.
Q2: Average of 5 numbers is 20. One number 30 replaced by 10. New average?
Answer: 16
Explanation: Sum 100 -> 80; avg 16.
Q3: A finishes in 10 days, B in 15. Together?
Answer: 6 days
Explanation: 1/10+1/15=1/6.
Q4: Probability of drawing an ace from a deck?
Answer: 1/13
Explanation: 4/52=1/13.
Q5: Pipe A fills in 6h, B in 8h. Together to fill?
Answer: 24/7 hours
Explanation: 1/6+1/8=7/24.
Q6: CP Rs.500, SP Rs.600. Profit percent?
Answer: 20%
Explanation: (100/500)*100=20%.
Q7: Find next: 2, 6, 12, 20, 30, ?
Answer: 42
Explanation: n(n+1) pattern.
Q8: A train 120 m long runs at 54 km/h. Time to pass a pole?
Answer: 8 seconds
Explanation: 54 km/h = 15 m/s; t = 120/15 = 8 s.
Coding Practice
Section titled “Coding Practice”Coding Q1: Level order traversal
Approach: BFS queue.
Complexity: O(n)
Maruti Suzuki tip: Narrate brute force then optimize then edge cases before coding.
Coding Q2: Coin change min coins
Approach: DP unbounded.
Complexity: O(amount*coins)
Maruti Suzuki tip: Narrate brute force then optimize then edge cases before coding.
Coding Q3: Binary search
Approach: Lo/hi mid.
Complexity: O(log n)
Maruti Suzuki tip: Narrate brute force then optimize then edge cases before coding.
Coding Q4: Kadane max subarray
Approach: Running best.
Complexity: O(n)
Maruti Suzuki tip: Narrate brute force then optimize then edge cases before coding.
Coding Q5: Reverse a string in-place
Approach: Two pointers from ends.
Complexity: O(n)/O(1)
Maruti Suzuki tip: Narrate brute force then optimize then edge cases before coding.
Coding Q6: Check prime
Approach: Trial division to sqrt(n).
Complexity: Handle n<2
Maruti Suzuki tip: Narrate brute force then optimize then edge cases before coding.
Coding Q7: Valid parentheses
Approach: Stack matching.
Complexity: O(n)
Maruti Suzuki tip: Narrate brute force then optimize then edge cases before coding.
Coding Q8: Two Sum
Approach: Hash map complements.
Complexity: O(n)
Maruti Suzuki tip: Narrate brute force then optimize then edge cases before coding.
Coding Q9: Longest substring without repeat
Approach: Sliding window + last index.
Complexity: O(n)
Maruti Suzuki tip: Narrate brute force then optimize then edge cases before coding.
Coding Q10: Merge intervals
Approach: Sort + merge.
Complexity: O(n log n)
Maruti Suzuki tip: Narrate brute force then optimize then edge cases before coding.
Deep Prep Notes for Maruti Suzuki
Section titled “Deep Prep Notes for Maruti Suzuki”How the Maruti Online Test Usually Feels
Section titled “How the Maruti Online Test Usually Feels”Candidates describe a paced filter where easy marks disappear if you over-invest in one hard item. For Maruti Suzuki, start with a three-minute scan, mark certainty levels, and protect accuracy. Languages typically include C/C++ for electronics tracks.
Topic Weight Hints (Candidate-Reported)
Section titled “Topic Weight Hints (Candidate-Reported)”| Area | Why it matters at Maruti Suzuki |
|---|---|
| Aptitude | Primary shortlist signal |
| Core CS (OOPs/DBMS/OS) | Technical interview depth |
| Automotive Manufacturing awareness | Managerial / HR differentiation |
| Communication | Especially for consulting and client-facing GSIs |
14-Day Sprint
Section titled “14-Day Sprint”- Days 1-3: pattern familiarization + 2 sectional mocks
- Days 4-7: weak-topic closed practice
- Days 8-10: full mocks every other day
- Days 11-14: interview narration + light revision
Related
Section titled “Related”Coding
OA
Hub
Similar Companies
Section titled “Similar Companies”Tata Motors · Mahindra · Bosch · Google · Amazon · Microsoft

