Skip to content

Mu Sigma Placement Papers 2024

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

Mu Sigma Placement Papers 2024 - actual questions & solutions

Section titled “Mu Sigma Placement Papers 2024 - actual questions & solutions”

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.

Q1: A shopkeeper marks goods 40% above cost and gives a 10% discount. Find the profit percentage.

Solution:

Let CP = 100. MP = 140. SP after 10% discount = 126.

Profit % = 126 − 100 = 26%.

Answer: 26%

Q2: A train 240 m long crosses a pole in 16 seconds. Find its speed in km/h.

Solution:

Speed = distance/time = 240/16 m/s = (240/16) × (18/5) = 54 km/h.

Answer: 54 km/h

Q3: The ratio of ages of A and B is 2:3. After 6 years, the ratio becomes 3:4. Find A’s present age.

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

Q4: A and B together finish a job in 8 days. B alone takes 24 days. How many days does A alone take?

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

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

Solution:

Positions from left: A = 11, B = 43 − 11 + 1 = 33. Students between = 33 − 11 − 1 = 21.

Answer: 21

Q6: Which number does not belong: 10, 25, 45, 54, 60, 75, 80?

Solution:

Pattern: All divisible by 5 except 54

Odd one out = 54.

Answer: 54

Q7: Choose the antonym of ‘Scarce’.

Solution:

‘Scarce’ means roughly the opposite of Abundant.

Answer: Abundant

Q8: Identify the error: ‘Neither of the boys have submitted their assignment.’

Solution:

‘Neither’ is singular → verb should be has, not have.

Correct: Neither of the boys has submitted his/their assignment.

Answer: have → has

Show solution

Problem Statement: Merge two sorted linked lists and return a new sorted list.

Example:

Input: 1→2→4 , 1→3→4
Output: 1→1→2→3→4→4

Solution (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)

Show solution

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)

Show solution

Problem Statement: Given a string of brackets, determine if it is valid.

Example:

Input: "()[]{}"
Output: true

Solution (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)

Key insights from 2024 musigma Online Assessment

Section titled “Key insights from 2024 musigma Online Assessment”
  1. Aptitude Section is Critical: Must perform well in quantitative and logical reasoning
  2. Logical Reasoning: Strong emphasis on analytical thinking and data interpretation
  3. Coding Section: 1-2 coding problems in 30 minutes requires good problem-solving skills
  4. Time Management: 20-25 aptitude in 30 min + 15-20 logical reasoning in 30 min + 1-2 coding in 30 min
  5. Success Rate: Only 15-20% cleared assessment and advanced to interviews
  6. Platform: MuSigma assessment platform
  7. Focus Areas: Quantitative aptitude, logical reasoning, data interpretation, analytical thinking

Based on candidate experiences from 2024 MuSigma interviews:

2024 Interview Process:

  1. Online Assessment (90 minutes): Aptitude (20-25) + Logical Reasoning (15-20) + Coding (1-2)
  2. Technical Interview (45-60 minutes): Data interpretation, analytical thinking, problem-solving, case studies
  3. HR Interview (30-45 minutes): Behavioral questions, company fit, motivation, analytical mindset

Common 2024 Interview Topics:

  • Aptitude: Quantitative reasoning, logical reasoning, data interpretation
  • Logical Reasoning: Analytical thinking, case studies, data analysis
  • Coding: Arrays, strings, basic algorithms, data processing
  • Behavioral: Problem-solving approach, analytical mindset, teamwork, motivation

Success Tips:

  • Strong aptitude and logical reasoning performance is essential
  • Practice data interpretation and analytical thinking
  • Understand case study analysis and problem-solving frameworks
  • Practice coding problems - arrays, strings, data processing algorithms
  • Prepare behavioral examples demonstrating analytical thinking
  • Understand MuSigma’s business model and analytics services

For detailed interview experiences, visit MuSigma Interview Experience page.

  1. Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
  2. Data Interpretation: Strong understanding of data interpretation and analytical thinking
  3. Case Studies: Practice case study analysis and problem-solving frameworks
  4. Practice Previous Year Papers: Solve MuSigma assessment papers from 2020-2024 to understand patterns
  5. Time Management: Practice completing 20-25 aptitude questions in 30 minutes
  6. Coding Practice: Practice arrays, strings, basic algorithms, data processing
  7. Logical Reasoning: Practice analytical thinking, case studies, data analysis
  8. Behavioral Preparation: Prepare examples using STAR format - analytical thinking, problem-solving
  9. Mock Tests: Take timed practice tests to improve speed and accuracy
  10. Analytics Focus: Understand analytics industry and MuSigma’s services

Infosys · TCS · Wipro · Accenture · Capgemini · HCL


Practice 2024 papers to understand MuSigma pattern and prepare effectively!