Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Mphasis Team. If you also belong to the team, you can get access from here

Mphasis Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Mphasis Interview Questions, Process, and Tips

Updated 11 Mar 2025

Top Mphasis Interview Questions and Answers

View all 527 questions

Mphasis Interview Experiences

Popular Designations

796 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. I applied for skill set Oracle PL/SQL, SQL and unix shell scripting. Process was really smooth. I was asked various basic SQL and PL/SQL questions. SQL joins, group by , virtual and pseudo columns. For UNI...
Round 2 - One-on-one 

(1 Question)

  • Q1. This was managerial round. Scenario based questions were asked. What methods do you follow? how do you make sure of data integrity? Any version control is used? How do you manage documentation? etc..
Round 3 - HR 

(1 Question)

  • Q1. This was a HR round, basic questions asked about my experience and details on currect ctc, expected CTC. Though they haven't offered the CTC which I asked, its still close to my expectations.

DBA Consultant Interview Questions asked at other Companies

Q1. How do you perform database backup and restoration in MSSQL?
View answer (1)

Sopra Steria

Rated 4 for Job Security by our employees on AmbitionBox

Secure your future with a company that values your job stability.

Software Engineer Interview Questions & Answers

user image Rajesh Pamuri

posted on 18 Jun 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 futures and that related question s
  • Q2. Coding quastion using java 8
  • Ans. 

    Implement a function to filter out strings starting with a specific letter using Java 8.

    • Use Java 8 Stream API to filter the strings based on a condition.

    • Use lambda expressions to define the filtering condition.

    • Use the 'filter' method of Stream to apply the filtering condition.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don’t skip java 8 fetures

Skills evaluated in this interview

Top Mphasis Software Engineer Interview Questions and Answers

Q1. Familiar languages you are going through What you learn in lockdown
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)
Mphasis Interview Questions and Answers for Freshers
illustration image
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to Pivot a table in SQL
  • Ans. 

    Pivoting a table in SQL involves rotating the data from rows into columns.

    • Use the PIVOT keyword in SQL to pivot a table

    • Specify the aggregation function and columns to pivot on

    • Example: SELECT * FROM table_name PIVOT (SUM(value) FOR column_name IN (value1, value2, ...))

    • Make sure to handle NULL values appropriately

  • Answered by AI
  • Q2. How to product wise second heighest sales item.
  • Ans. 

    To find the product wise second highest sales item, sort the sales data for each product and select the second highest value.

    • Sort the sales data for each product in descending order

    • Select the second value from the sorted list to find the second highest sales item

    • Consider ties and handle them accordingly

  • Answered by AI

Skills evaluated in this interview

Data Quality Analyst Interview Questions asked at other Companies

Q1. What are the different types of joins in SQL, and can you explain each join in detail?
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How to reverse a array, basic java

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
View answer (1)

Mphasis interview questions for popular designations

 Associate Software Engineer

 (77)

 Software Engineer

 (56)

 Senior Software Engineer

 (56)

 Module Lead

 (33)

 Transaction Processing Officer

 (27)

 Software Developer

 (20)

 Delivery Module Lead

 (14)

 Automation Test Engineer

 (10)

Interview Questions & Answers

user image Bharath SV

posted on 12 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Character and its frequency in your name using stream
  • Ans. 

    Using Java streams to find the frequency of each character in a given name

    • Convert the name to a character array

    • Use a stream to group the characters by their frequency

    • Print out the character and its frequency

  • Answered by AI

Get interview-ready with Top Mphasis Interview Questions

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Duration was 2hrs. Consists of logical verbal and Quants related questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Project frameweworks
  • Q2. Explain the use of your project
Round 3 - HR 

(2 Questions)

  • Q1. General questions
  • Q2. Any internship experience

Top Mphasis Software Developer Interview Questions and Answers

Q1. How can you reverse a string that is stored in an array?
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Jobs at Mphasis

View all
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. CSS Box-model definition
  • Ans. 

    CSS Box-model defines how elements are rendered in a webpage, including padding, border, and margin.

    • Box-model consists of content, padding, border, and margin

    • Content area is where text or images are displayed

    • Padding is the space between content and border

    • Border is the line around the content and padding

    • Margin is the space outside the border

  • Answered by AI
  • Q2. Difference b/n flexbox and grid
  • Ans. 

    Flexbox is for one-dimensional layouts, grid is for two-dimensional layouts.

    • Flexbox is best for arranging items in a single row or column.

    • Grid is best for creating complex layouts with rows and columns.

    • Flexbox is more suitable for smaller scale layouts, while grid is better for larger scale layouts.

    • Flexbox is more flexible in terms of item order and sizing, while grid provides more control over the overall layout.

    • Both

  • Answered by AI

Skills evaluated in this interview

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Walk me through your profile?
  • Q2. Companies you have similar job role experiences?
Round 2 - One-on-one 

(2 Questions)

  • Q1. Describe Lean Six Sigma?
  • Ans. 

    Lean Six Sigma is a methodology that combines Lean principles and Six Sigma techniques to improve processes by eliminating waste and reducing variation.

    • Combines Lean principles (focus on efficiency and waste reduction) with Six Sigma techniques (focus on quality and variation reduction)

    • Uses tools like value stream mapping, root cause analysis, and statistical analysis to identify and solve process problems

    • Aims to impro...

  • Answered by AI
  • Q2. Various aspect of process capacity calculation.
  • Ans. 

    Process capacity calculation involves determining the maximum output a process can achieve under normal operating conditions.

    • Process capacity is calculated by dividing the actual output by the maximum possible output.

    • It helps in identifying bottlenecks and inefficiencies in the process.

    • Examples of process capacity calculation methods include Little's Law, queuing theory, and simulation modeling.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Mphasis Process Excellence Team Manager interview:
  • Lean six sigma Black belt
Interview preparation tips for other job seekers - Be ready for a detail Operation round when going for specific job profile. Hard core digging does happen and unexpected questions do come up.
You to check the job profile completely as I found out that it was not for 1 process as shared by HR but for whole company as the requirement.

Process Excellence Team Manager Interview Questions asked at other Companies

Q1. Various aspect of process capacity calculation.
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Oops concepts Sql querys Searching and sorting Projects in resume
  • Q2. What is oops and it's four pillars?
  • Ans. 

    Object-oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: The ability for objects to be treated as instances of their parent class.

    • Abstraction: Hiding the complex implementation ...

  • Answered by AI
  • Q3. What is copy constructor?
  • Ans. 

    Copy constructor is a special type of constructor which creates a new object as a copy of an existing object.

    • Copy constructor is used to initialize a new object as a copy of an existing object.

    • It takes an object of the same class as a parameter.

    • It is called when a new object is created from an existing object.

    • Example: class MyClass { public: MyClass(const MyClass& obj) { // copy constructor logic } };

  • Answered by AI

Skills evaluated in this interview

Top Mphasis Associate Software Developer Interview Questions and Answers

Q1. Do you have good knowledge of programmings?
View answer (1)

Associate Software Developer Interview Questions asked at other Companies

Q1. Nth Fibonacci Number Problem Statement Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1. Input: The input consists of a single intege... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Define. Net core?
  • Ans. 

    ASP.NET Core is a cross-platform, high-performance framework for building modern, cloud-based, internet-connected applications.

    • Cross-platform framework for building web applications

    • High-performance and scalable

    • Supports cloud-based and internet-connected applications

  • Answered by AI
  • Q2. Explain web api?
  • Ans. 

    Web API is a set of rules and protocols that allow different software applications to communicate with each other over the internet.

    • Web API stands for Application Programming Interface for web-based systems.

    • It allows different software applications to interact with each other over the internet.

    • Web APIs use HTTP protocols to enable communication between systems.

    • Examples of web APIs include RESTful APIs, SOAP APIs, and G

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good. Asked some basic scenario in. Net core.

Skills evaluated in this interview

Top Mphasis Senior Software Engineer Interview Questions and Answers

Q1. Trapping Rain Water Problem Statement Given a long type array/list ARR of size N, representing an elevation map where ARR[i] denotes the elevation of the ith bar, calculate the total amount of rainwater that can be trapped in these elevatio... read more
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Contribute & help others!
anonymous
You can choose to be anonymous

Mphasis Interview FAQs

How many rounds are there in Mphasis interview?
Mphasis interview process usually has 2-3 rounds. The most common rounds in the Mphasis interview process are Technical, HR and Resume Shortlist.
How to prepare for Mphasis interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Mphasis. The most common topics and skills that interviewers at Mphasis expect are Java, Javascript, SQL, Spring Boot and Microservices.
What are the top questions asked in Mphasis interview?

Some of the top questions asked at the Mphasis interview -

  1. 1. All types of database commands- DDL, DML, DCL, TCL 2. Write a java code to r...read more
  2. 1. What are the commands used for maven build 2. What are the different stages ...read more
  3. 3 types of languages pronunciation one in english language , the same words and...read more
How long is the Mphasis interview process?

The duration of Mphasis interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

SALARIES

ICONMA

INTERVIEWS

iSource

No Interviews

SALARIES

ICONMA

SALARIES

iSource

JOBS

Randstad

No Jobs

SALARIES

iSource

SALARIES

ICONMA

LIST OF COMPANIES

iSource

Overview

REVIEWS

iSource

No Reviews

REVIEWS

iSource

No Reviews

Tell us how to improve this page.

Mphasis Interview Process

based on 675 interviews

Interview experience

4
  
Good
View more

HCLTech

An opportunity to work for Fortune 500 companies

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
DXC Technology Interview Questions
3.7
 • 795 Interviews
KPIT Technologies Interview Questions
3.4
 • 281 Interviews
View all

Mphasis Reviews and Ratings

based on 8.4k reviews

3.4/5

Rating in categories

3.3

Skill development

3.5

Work-life balance

2.8

Salary

3.4

Job security

3.3

Company culture

2.5

Promotions

3.2

Work satisfaction

Explore 8.4k Reviews and Ratings
Trainee Transaction Processing Officer

Pune

0-1 Yrs

Not Disclosed

Closer Professional

Pune

2-4 Yrs

Not Disclosed

Asst. Unit Manager - ID

Bangalore / Bengaluru

2-6 Yrs

Not Disclosed

Explore more jobs
Software Engineer
6.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
5.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
4.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Module Lead
2.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Transaction Processing Officer
2.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Mphasis with

Cognizant

3.7
Compare

Wipro

3.7
Compare

Accenture

3.8
Compare

TCS

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview