Musigma 2025 papers
Latest MuSigma placement papers with current year questions
This page collects Mu Sigma 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 Mu Sigma patterns and the latest shifts.
| Section | Questions | Time | Difficulty |
|---|---|---|---|
| Aptitude | 20-25 | 30 min | Medium |
| Logical Reasoning | 15-20 | 30 min | Medium |
| Coding | 1-2 | 30 min | Medium |
This section contains practice questions styled on Mu Sigma 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:
Let CP = 100. MP = 140. SP after 10% discount = 126.
Profit % = 126 − 100 = 26%.
Answer: 26%
Solution:
Speed = distance/time = 240/16 m/s = (240/16) × (18/5) = 54 km/h.
Answer: 54 km/h
Solution:
Let ages be 2x and 3x.
(2x + 6)/(3x + 6) = 3/4 4(2x + 6) = 3(3x + 6) 8x + 24 = 9x + 18 x = 6 A’s age = 2×6 = 12 years.
Answer: 12 years
Solution:
Together rate = 1/8. B’s rate = 1/24.
A’s rate = 1/8 − 1/24 = (24−8)/(8×24) = 16/192. Days for A alone = 192/16 = 12 days.
Answer: 12 days
Solution:
Positions from left: A = 11, B = 43 − 11 + 1 = 33. Students between = 33 − 11 − 1 = 21.
Answer: 21
Solution:
Pattern: All divisible by 5 except 54
Odd one out = 54.
Answer: 54
Solution:
‘Scarce’ means roughly the opposite of Abundant.
Answer: Abundant
Solution:
‘Neither’ is singular → verb should be has, not have.
Correct: Neither of the boys has submitted his/their assignment.
Answer: have → has
Problem Statement: Merge two sorted linked lists and return a new sorted list.
Example:
Input: 1→2→4 , 1→3→4Output: 1→1→2→3→4→4Solution (Java):
public ListNode mergeTwoLists(ListNode a, ListNode b) { ListNode dummy = new ListNode(0), cur = dummy; while (a != null && b != null) { if (a.val <= b.val) { cur.next = a; a = a.next; } else { cur.next = b; b = b.next; } cur = cur.next; } cur.next = (a != null) ? a : b; return dummy.next;}Time Complexity: O(n + m)
Space Complexity: O(1)
Problem Statement: Given a string, return it reversed.
Example:
Input: "placement"Output: "tnemecalp"Solution (Java):
public String reverse(String s) { return new StringBuilder(s).reverse().toString();}Time Complexity: O(n)
Space Complexity: O(n)
Problem Statement: Given a string of brackets, determine if it is valid.
Example:
Input: "()[]{}"Output: trueSolution (Java):
public boolean isValid(String s) { Deque<Character> st = new ArrayDeque<>(); Map<Character, Character> pair = Map.of(')', '(', ']', '[', '}', '{'); for (char c : s.toCharArray()) { if (pair.containsValue(c)) st.push(c); else if (st.isEmpty() || st.pop() != pair.get(c)) return false; } return st.isEmpty();}Time Complexity: O(n)
Space Complexity: O(n)
Based on candidate experiences from 2024 MuSigma interviews:
2024 Interview Process:
Common 2024 Interview Topics:
Success Tips:
For detailed interview experiences, visit MuSigma Interview Experience page.
Musigma 2025 papers
Latest MuSigma placement papers with current year questions
Musigma aptitude questions
Complete collection of MuSigma aptitude problems
Musigma interview experience
Real interview experiences from successful candidates
Musigma preparation guide
Comprehensive preparation strategy for MuSigma placement
Musigma main page
Complete MuSigma placement guide with eligibility, process, and salary
Infosys · TCS · Wipro · Accenture · Capgemini · HCL
Practice 2024 papers to understand MuSigma pattern and prepare effectively!