Mu Sigma Placement Papers 2026
Mu Sigma Placement Papers 2026 — Complete Preparation Guide
Last Updated: March 2026
Company Overview
Mu Sigma is a decision science and analytics firm helping companies institutionalize data-driven decision making. It's one of the largest pure-play analytics companies.
Key Facts:
- Founded: 2004
- Employees: 3500+ globally
- India Offices: Bangalore (HQ)
- Focus: Analytics, Data Science, Decision Sciences
Eligibility Criteria
| Criteria | Requirement |
|---|---|
| Degree | B.Tech/B.E, M.Tech, B.Sc, M.Sc, BCA, MCA |
| Branches | Any (Math, Stats preferred) |
| Academic Score | 60%+ throughout |
| Backlogs | No active backlogs |
CTC & Compensation
| Role | CTC (Fresher) |
|---|---|
| Trainee Decision Scientist | 5-8 LPA |
| Business Analyst | 4.5-6.5 LPA |
Exam Pattern
| Section | Questions | Duration |
|---|---|---|
| MuAPT (Aptitude + Logic) | 20 | 20 min |
| Critical Thinking | 15 | 15 min |
| Case Study | 1 | 30 min |
| Video Synthesis | 1 | 20 min |
Aptitude Questions
Q1
Find next: 1, 1, 2, 3, 5, 8, ? Answer: 13 (Fibonacci)
Q2
If 8 men can do work in 24 days, 12 men take? Answer: 16 days
Q3
Probability of drawing red card or king from deck? Answer: 7/13
Q4
Ages ratio 3:4, after 4 years 7:9. Present age of younger? Answer: 12 years
Q5
SI on Rs. 4000 for 2.5 years at 6%? Answer: Rs. 600
Logical & Case Questions
Q1
A city has 1 million people. Estimate number of pizza shops needed.
Approach:
- Pizza consumption per person per month
- Average shop capacity
- Market penetration
Q2
Why do airlines overbook flights?
Q3
Estimate gallons of coffee consumed in Bangalore daily.
Approach:
- Population × coffee drinkers % × cups per day × volume per cup
Coding Questions (Python)
Q1: Basic Statistics
def calculate_stats(nums):
"""Calculate mean, median, mode"""
from statistics import mean, median, mode
return {
'mean': mean(nums),
'median': median(nums),
'mode': mode(nums)
}
Q2: Data Normalization
def normalize(data):
"""Min-max normalization"""
min_val = min(data)
max_val = max(data)
return [(x - min_val) / (max_val - min_val) for x in data]
Q3: Moving Average
def moving_average(data, window):
"""Calculate moving average"""
result = []
for i in range(len(data) - window + 1):
avg = sum(data[i:i+window]) / window
result.append(avg)
return result
Interview Tips
- Structured Thinking: Mu Sigma values structured problem-solving
- Guesstimates: Practice estimation questions
- Case Studies: Learn case frameworks
- Statistics: Strong stats fundamentals
- Communication: Clear articulation of thought process
FAQs
Q1: Is Mu Sigma good for analytics careers? Yes, excellent training Q2: Bond period? 2 years typical Q3: Work hours? Can be demanding, project dependent
All the best for your Mu Sigma placement!
Explore this topic cluster
More resources in Uncategorized
Use the category hub to browse similar questions, exam patterns, salary guides, and preparation resources related to this topic.