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 3 Mar 2025

Top Mphasis Interview Questions and Answers

View all 520 questions

Mphasis Interview Experiences

Popular Designations

791 interviews found

Test Engineer Interview Questions & Answers

user image Ashwini Jadhav

posted on 5 Sep 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn

Round 1 - One-on-one 

(4 Questions)

  • Q1. Opps concepts Abrction
  • Q2. Testng annotatations
  • Q3. Java code for reverse the string
  • Ans. 

    Java code to reverse a string using StringBuilder

    • Create a StringBuilder object with the input string

    • Use the reverse() method of StringBuilder to reverse the string

    • Convert the reversed StringBuilder object back to a string using toString()

  • Answered by AI
  • Q4. They have given link on that ask to find xpath

Skills evaluated in this interview

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Question based on frameworks and oops
  • Q2. Java string concepts
Round 2 - HR 

(1 Question)

  • Q1. Situation based questions

Quality Engineer Interview Questions asked at other Companies

Q1. What is MSA and addition of msa version, type of msa ,what different between variable data and attibute data .why difine flase and miss rate calculate by msa .
View answer (8)
Mphasis Interview Questions and Answers for Freshers
illustration image
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is Pointer in c
  • Ans. 

    Pointer in C is a variable that stores the memory address of another variable.

    • Pointers are used to access and manipulate memory addresses directly.

    • They are denoted by an asterisk (*) before the variable name.

    • Example: int *ptr; // declares a pointer variable ptr of type int

  • Answered by AI
  • Q2. What is inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can override or extend the functionality of the base class

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was overalll good asked me basic c Questions

Skills evaluated in this interview

Top Mphasis Associate Software Engineer Interview Questions and Answers

Q1. 1. All types of database commands- DDL, DML, DCL, TCL 2. Write a java code to reverse a given string or sentence 3. Questions based on a major and minor project 4. Questions based on Industrial Training/Internship 5. Operating System- Job s... read more
View answer (1)

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. Python and java spring cloud

Interview Preparation Tips

Interview preparation tips for other job seekers - all good

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

Mphasis interview questions for popular designations

 Associate Software Engineer

 (77)

 Senior Software Engineer

 (56)

 Software Engineer

 (55)

 Module Lead

 (33)

 Transaction Processing Officer

 (27)

 Software Developer

 (20)

 Delivery Module Lead

 (14)

 Automation Test Engineer

 (10)

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(6 Questions)

  • Q1. How to handle the exceptions globally in rest api Springboot
  • Ans. 

    Handle exceptions globally in Springboot REST API

    • Use @ControllerAdvice annotation to define global exception handling for all controllers

    • Create a class annotated with @ControllerAdvice and define methods to handle specific exceptions

    • Use @ExceptionHandler annotation to specify which exceptions the method should handle

    • Return appropriate HTTP status codes and error messages in the exception handling methods

  • Answered by AI
  • Q2. Micro services design pattern and example
  • Ans. 

    Microservices design pattern involves breaking down a large application into smaller, independent services.

    • Each microservice is responsible for a specific function or feature

    • Communication between microservices is typically done through APIs

    • Microservices can be deployed independently, allowing for easier scalability and maintenance

    • Examples include Netflix (uses microservices for different functionalities like recommenda...

  • Answered by AI
  • Q3. Add 10% hike for the employees who are more than 5 years of experience using stream API.
  • Q4. Map, flatmap method difference in stream
  • Ans. 

    Map method transforms each element in a stream, while flatMap method transforms each element into a stream and then flattens the result.

    • Map method applies a function to each element in the stream and returns a new stream with the transformed elements.

    • FlatMap method applies a function that returns a stream for each element in the original stream, then flattens these streams into a single stream.

    • Example: Using map to con...

  • Answered by AI
  • Q5. How to handle customized exceptions in controller advice with example code.
  • Ans. 

    Handling customized exceptions in controller advice with example code

    • Create a custom exception class that extends RuntimeException

    • Create a controller advice class to handle exceptions globally

    • Use @ExceptionHandler annotation in the controller advice class to handle specific exceptions

    • Return a custom error response with appropriate status code and message

  • Answered by AI
  • Q6. What annotations are included in @SpringbootApplication annotation
  • Ans. 

    The @SpringBootApplication annotation includes @Configuration, @EnableAutoConfiguration, and @ComponentScan annotations.

    • Includes @Configuration annotation to specify that the class can be used by the Spring IoC container as a source of bean definitions.

    • Includes @EnableAutoConfiguration annotation to enable Spring Boot's auto-configuration feature.

    • Includes @ComponentScan annotation to specify the base packages to scan f

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare spring boot annotations, Java 8 features and microservices related questions well. Aws/ azure will added advantage.

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. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Get interview-ready with Top Mphasis Interview Questions

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 Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Java, Appium, selenium basics

Round 2 - Technical 

(2 Questions)

  • Q1. Java logical programs coding
  • Q2. Detail discussion kn projects worked

Interview Preparation Tips

Topics to prepare for Mphasis Associate Software Test Engineer interview:
  • Java logical programs
  • BDD
  • Framework
  • STLC
  • Appium
Interview preparation tips for other job seekers - Self intro, java logical programs and project detail knowledge is very important

Associate Software Test Engineer Interview Questions asked at other Companies

Q1. Write a java code to generate fibonacci series
View answer (2)

Jobs at Mphasis

View all
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. How can you reverse a string that is stored in an array?
  • Ans. 

    To reverse a string stored in an array, iterate through each string and reverse it character by character.

    • Iterate through each string in the array

    • For each string, use a loop to reverse the characters

    • Store the reversed string back in the array

  • Answered by AI
  • Q2. Oops
Round 2 - HR 

(2 Questions)

  • Q1. How do you feel about policies and location constraints?
  • Ans. 

    I am comfortable with policies but prefer flexibility in location constraints.

    • I believe policies are necessary for maintaining order and consistency in a work environment.

    • I am open to following company policies and procedures to ensure smooth operations.

    • I prefer flexibility in location constraints as it allows for a better work-life balance and increased productivity.

    • For example, remote work options can be beneficial f...

  • Answered by AI
  • Q2. Okay with joining mphasis?
  • Ans. 

    Yes, I am okay with joining Mphasis.

    • I am excited about the opportunity to work at Mphasis.

    • I have researched the company and am impressed with their work culture.

    • I am ready to contribute my skills and expertise to the team at Mphasis.

  • Answered by AI

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)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Opps concept on spring boot
  • Ans. 

    OOPs concepts in Spring Boot refer to the principles of Object-Oriented Programming applied in the development of Spring Boot applications.

    • Inheritance: Allows classes to inherit attributes and methods from other classes.

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

    • Polymorphism: Allows objects to be treated as instances of their parent class.

    • Abstraction: Hides the implementation d...

  • Answered by AI
  • Q2. How docker works and kunermates
  • Ans. 

    Docker is a platform for developing, shipping, and running applications in containers. Kubernetes is an open-source system for automating deployment, scaling, and management of containerized applications.

    • Docker allows developers to package applications and their dependencies into containers for easy deployment and scalability.

    • Kubernetes helps in automating the deployment, scaling, and management of containerized applic...

  • Answered by AI

Skills evaluated in this interview

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)

Software Developer Interview Questions & Answers

user image Vamsi Krishna

posted on 27 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Mainly About Simple array question

Round 2 - Technical 

(2 Questions)

  • Q1. About collections in Java
  • Q2. Spring Boot questions

Interview Preparation Tips

Topics to prepare for Mphasis Software Developer interview:
  • Java
Interview preparation tips for other job seekers - Sholud be strong in basics

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)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Explain Framework
  • Ans. 

    A framework is a set of guidelines, tools, and libraries used to develop and maintain software applications.

    • Provides structure and guidelines for development

    • Promotes code reusability and maintainability

    • Includes libraries and tools for common tasks

    • Supports automation and scalability

    • Examples: Selenium WebDriver for web automation, TestNG for test execution

  • Answered by AI
  • Q2. Code to find second largest number in array without sorting
  • Ans. 

    Use two variables to keep track of the largest and second largest numbers in the array.

    • Iterate through the array and compare each element with the largest and second largest variables.

    • Update the variables accordingly to find the second largest number.

    • Return the second largest number once the iteration is complete.

  • Answered by AI
  • Q3. Find xpath of product on amazon
  • Ans. 

    The xpath of a product on Amazon can be found by inspecting the HTML code of the product page.

    • Right click on the product on Amazon and select 'Inspect' to view the HTML code

    • Locate the unique identifier of the product, such as class name or id

    • Construct the xpath using the unique identifier and other relevant attributes

  • Answered by AI
  • Q4. Oops concept in java
  • Ans. 

    Object-oriented programming concept in Java

    • Encapsulation: bundling data and methods that operate on the data

    • Inheritance: creating new classes using existing classes

    • Polymorphism: ability to present the same interface for different data types

  • Answered by AI

Skills evaluated in this interview

Top Mphasis Automation Test Engineer Interview Questions and Answers

Q1. Can you create a Static method inside an Abstract class or Interface?
View answer (1)

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... 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

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

REVIEWS

Enlist Management Consultants

No Reviews

INTERVIEWS

HumanHire Corp.

No Interviews

INTERVIEWS

Ubique Systems

No Interviews

INTERVIEWS

Growel Softech

No Interviews

REVIEWS

Planet PCI Infotech

No Reviews

SALARIES

Morpheus Human Consulting

No Salaries

PHOTOS

Enlist Management Consultants

No Photos

Tell us how to improve this page.

Mphasis Interview Process

based on 666 interviews

Interview experience

4
  
Good
View more

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.3k 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.3k Reviews and Ratings
Senior Software Engg - Systems

Bangalore / Bengaluru

4-6 Yrs

Not Disclosed

Sr Softeware Engineer

Hyderabad / Secunderabad

5-7 Yrs

₹ 0.5-1.75 LPA

Sr Sofware Engineer

Bangarapet

6-11 Yrs

₹ 0.5-2 LPA

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