Skip to content

Mphasis Placement Papers 2025

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.

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

Section titled “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.

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

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

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

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

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

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

Q7: Choose the synonym of ‘Genuine’.

Solution:

In placement verbal sections, ‘Genuine’ is closest in meaning to Authentic among common options.

Answer: Authentic

Q8: Choose the antonym of ‘Ancient’.

Solution:

‘Ancient’ means roughly the opposite of Modern.

Answer: Modern

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 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 = 9
Output: [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)

Show solution

Problem Statement: Rotate the array to the right by k steps.

Example:

Input: [1,2,3,4,5,6,7], k = 3
Output: [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

Section titled “Key insights from 2025 Mphasis Online Assessment”
  1. Aptitude Section is Critical: Must perform well in quantitative and logical reasoning
  2. Technical MCQs: Strong emphasis on programming fundamentals, DBMS, OOPs, cloud services concepts
  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 technical in 30 min + 1-2 coding in 30 min
  5. Success Rate: Only 20-25% cleared assessment and advanced to interviews
  6. Platform: Mphasis assessment platform
  7. Focus Areas: Quantitative aptitude, logical reasoning, programming fundamentals, cloud services
  8. Enhanced Emphasis: Optimal solutions and cloud services knowledge

Based on recent candidate experiences from 2025 Mphasis interviews:

2025 Interview Process:

  1. Online Assessment (90 minutes): Aptitude (20-25) + Technical (15-20) + Coding (1-2)
  2. Technical Interview (45-60 minutes): Programming concepts, DBMS, OOPs, cloud services, problem-solving
  3. 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.

  1. Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
  2. Technical Fundamentals: Strong understanding of programming, DBMS, OOPs, cloud services
  3. Practice Previous Year Papers: Solve Mphasis assessment papers from 2020-2025 to understand evolving patterns
  4. Time Management: Practice completing 20-25 aptitude questions in 30 minutes
  5. Coding Practice: Practice arrays, strings, basic algorithms, optimal solutions
  6. Technical MCQs: Practice programming concepts, DBMS, OOPs, cloud services
  7. Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, adaptability
  8. Mock Tests: Take timed practice tests to improve speed and accuracy
  9. Cloud Services: Understand cloud services concepts and cloud-native development
  10. Communication Skills: Practice articulating thoughts clearly

Infosys · TCS · Wipro · Accenture · Capgemini · HCL


Practice 2025 papers to stay updated with latest patterns and prepare effectively!