2024 papers
Mphasis Placement Papers 2025
Overview
This page is a working set of Mphasis placement papers from 2025: from student reports questions, the 2025 online assessment pattern, and step-by-step solutions. Use it to see what Mphasis actually asked in the latest cycle, how hard the rounds were, and which themes (DSA, system design, aptitude, or role-specific topics) mattered most. Practice the problems below under timed conditions, then cross-check with the interview and preparation guides if you are targeting an upcoming Mphasis drive.
Mphasis Online Assessment 2025 pattern
| Section | Questions | Time | Difficulty |
|---|---|---|---|
| Aptitude | 20-25 | 30 min | Medium |
| Technical | 15-20 | 30 min | Medium |
| Coding | 1-2 | 30 min | Medium |
Mphasis Placement Papers 2025 - actual questions & solutions
This section contains practice questions styled on Mphasis placement papers 2025 (recent-cycle 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.
Question 1
Q1: 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
Question 2
Q2: Average of 6 numbers is 18. If one number 12 is replaced by 24, what is the new average?
Solution:
Old sum = 6 × 18 = 108. New sum = 108 − 12 + 24 = 120. New average = 120/6 = 20.
Answer: 20
Question 3
Q3: 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
Question 4
Q4: A number is increased by 10% and then decreased by 10%. Find the net percentage change.
Solution:
Let original = 100. After +10% → 110. After −10% → 110 − 11 = 99.
Net change = 100 − 99 = 1. Net % = 1% decrease (always a loss of (10/10)² %).
Answer: 1% decrease
Question 5
Q5: In a row of 40 students, A is 9th 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 = 9, B = 40 − 11 + 1 = 30. Students between = 30 − 9 − 1 = 20.
Answer: 20
Question 6
Q6: If in a certain code SKY is written as 191125 and SUN as 192114, how is MOON written?
Solution:
Pattern: M=13,O=15,O=15,N=14
Therefore MOON → 13151514.
Answer: 13151514
Question 7
Q7: Choose the synonym of ‘Genuine’.
Solution:
In placement verbal sections, ‘Genuine’ is closest in meaning to Authentic among common options.
Answer: Authentic
Question 8
Q8: Choose the antonym of ‘Ancient’.
Solution:
‘Ancient’ means roughly the opposite of Modern.
Answer: Modern
Question 9: reverse a string
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)
Question 10: two sum
Show solution
Problem Statement: Given an array of integers and a target, return indices of two numbers that add up to target.
Example:
Input: nums = [2, 7, 11, 15], target = 9Output: [0, 1]Solution (Java):
public int[] twoSum(int[] nums, int target) { Map<Integer, Integer> map = new HashMap<>(); for (int i = 0; i < nums.length; i++) { int need = target - nums[i]; if (map.containsKey(need)) return new int[]{map.get(need), i}; map.put(nums[i], i); } return new int[]{};}Time Complexity: O(n)
Space Complexity: O(n)
Question 11: rotate array right by k
Show solution
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)
Key insights from 2025 Mphasis Online Assessment
- Aptitude Section is Critical: Must perform well in quantitative and logical reasoning
- Technical MCQs: Strong emphasis on programming fundamentals, DBMS, OOPs, cloud services concepts
- Coding Section: 1-2 coding problems in 30 minutes requires good problem-solving skills
- Time Management: 20-25 aptitude in 30 min + 15-20 technical in 30 min + 1-2 coding in 30 min
- Success Rate: Only 20-25% cleared assessment and advanced to interviews
- Platform: Mphasis assessment platform
- Focus Areas: Quantitative aptitude, logical reasoning, programming fundamentals, cloud services
- Enhanced Emphasis: Optimal solutions and cloud services knowledge
Mphasis 2025 interview experiences
Based on recent candidate experiences from 2025 Mphasis interviews:
2025 Interview Process:
- Online Assessment (90 minutes): Aptitude (20-25) + Technical (15-20) + Coding (1-2)
- Technical Interview (45-60 minutes): Programming concepts, DBMS, OOPs, cloud services, problem-solving
- HR Interview (30-45 minutes): Behavioral questions, company fit, motivation
2025 Interview Trends:
- Increased emphasis on cloud services and modern technologies
- More focus on optimal solutions and cloud-native development
- Enhanced behavioral questions about adaptability and learning
- Questions about cloud services and digital transformation
Common 2025 Interview Topics:
- Aptitude: Quantitative reasoning, logical reasoning, percentage increase
- Technical: Programming concepts, DBMS, OOPs, cloud services, cloud basics
- Coding: Arrays, strings, basic algorithms, optimal solutions
- Behavioral: Problem-solving approach, teamwork, motivation, adaptability
Success Tips:
- Strong aptitude performance is essential - practice quantitative and logical reasoning
- Understand programming fundamentals, DBMS, OOPs, cloud services concepts
- Practice coding problems - arrays, strings, basic algorithms
- Prepare behavioral examples using STAR format
- Understand Mphasis’s business model and cloud services focus
For detailed interview experiences from 2025, visit Mphasis Interview Experience page.
Preparation tips for Mphasis 2025 pattern
- Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
- Technical Fundamentals: Strong understanding of programming, DBMS, OOPs, cloud services
- Practice Previous Year Papers: Solve Mphasis assessment papers from 2020-2025 to understand evolving patterns
- Time Management: Practice completing 20-25 aptitude questions in 30 minutes
- Coding Practice: Practice arrays, strings, basic algorithms, optimal solutions
- Technical MCQs: Practice programming concepts, DBMS, OOPs, cloud services
- Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, adaptability
- Mock Tests: Take timed practice tests to improve speed and accuracy
- Cloud Services: Understand cloud services concepts and cloud-native development
- Communication Skills: Practice articulating thoughts clearly

