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 Software Engineer Interview Questions, Process, and Tips

Updated 18 Jan 2025

Top Mphasis Software Engineer Interview Questions and Answers

View all 25 questions

Mphasis Software Engineer Interview Experiences

55 interviews found

Software Engineer Interview Questions & Answers

user image Videla saikumar

posted on 23 Jan 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jan 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basics and Medium Level of aptitude

Round 2 - Group Discussion 

The topic will be given by the recruiter for the group of people and you must speak to stand out.

Round 3 - Technical 

(1 Question)

  • Q1. This Round includes Oops, Programming Language which you preferred, and those questions will be asked. In my case, they asked me to write a code for the inverse triangle pattern program. Overall round went...
Round 4 - HR 

(1 Question)

  • Q1. Introduce yourself, Are you willing to relocate, Salary package discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - If Someone is good at oops and a programming language, Then anyone can Crack it.

I applied via campus placement at SSN College of Engineering, Chennai and was interviewed in Apr 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Amcat based aptitude test followed by group discussion on general &social topics.2 rounds of technical interview.
  • Q2. GD-one time use plastic should be banned r not
  • Ans. 

    Yes, GD-one time use plastic should be banned.

    • One-time use plastic is harmful to the environment and wildlife.

    • Alternatives like reusable bags and containers are readily available.

    • Many countries and cities have already implemented bans on single-use plastics.

    • Reducing plastic waste is crucial for the health of our planet.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Difficulty level-medium.Go through online qns before interview .

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

I applied via Approached by Company and was interviewed before Nov 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

10 coding questions + client interview

Round 3 - Technical 

(2 Questions)

  • Q1. 1. Linked list - Linked list operation 2. Basic C Questions - String reversal 3. Fibonacci series
  • Ans. Basic linked list programming and string questions
  • Answered Anonymously
  • Q2. String questions - reversal, palindrome

Interview Preparation Tips

Interview preparation tips for other job seekers - If you're from Embedded domain then don't join this company. They have no ideas how much to pay and how to handle core developers.
They won't give any hike and they think Embedded = Manual testing. Managers are biased and are always trying to justify their actions. Whenever you will ask for hike they will say next cycle (after 6 months), in next cycle again they'll say next cycle..... Don't join this company

I applied via Campus Placement and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy ,basic aptitude question

Round 2 - Technical 

(1 Question)

  • Q1. Basic oops question and it was a very short interview ( about 10-15 min).
Round 3 - HR 

(3 Questions)

  • Q1. Where do you see yourself in 5 years?
  • Q2. Tell me about yourself.
  • Q3. Just term and conditions discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Very Easy to get in Mphasis just have a basic knowledge of any programming language and Oops concept .

Mphasis interview questions for designations

 Associate Software Engineer

 (77)

 Senior Software Engineer

 (56)

 Delv Software Engineer

 (5)

 Software Engineer Trainee

 (2)

 System Software Engineer

 (2)

 Junior Software Engineer

 (2)

 Software Testing Engineer

 (2)

 Java Software Engineer

 (1)

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly basic questions? Tell about yourself and past project. Another questions like OOPs concepts, difference b/w overloading and overriding. Java 8 features and streams.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have basic good. Practice some small coding questions also.

Get interview-ready with Top Mphasis Interview Questions

Software Engineer Interview Questions & Answers

user image chandra sekhar

posted on 22 Jul 2021

Interview Questionnaire 

1 Question

  • Q1. Fully technical and scenario based

Software Engineer Jobs at Mphasis

View all

Interview Questionnaire 

1 Question

  • Q1. Most of the question are from my resume. Next was technical most of they questions are from java much were like facts what is the latest version of Java current in use and etc

Interview Questionnaire 

1 Question

  • Q1. Core Java basic question. Collection, exception, Spring Core, mvc, boot.

I applied via campus placement at SRM Engineering College, Kattankolathur and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. What is overloading?
  • Ans. 

    Overloading is the ability to have multiple methods with the same name but different parameters.

    • Overloading allows for more flexibility in method naming and usage.

    • The methods must have different parameters, such as different data types or different numbers of parameters.

    • Example: public void print(int num) and public void print(String str) are both methods with the same name but different parameters.

    • Overloading is deter...

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

    Overriding is a feature in object-oriented programming where a subclass provides its own implementation of a method that is already defined in its superclass.

    • Overriding allows a subclass to provide a specific implementation of a method that is already defined in its superclass.

    • The method signature (name, parameters, and return type) must be the same in both the superclass and subclass.

    • The subclass method must have the ...

  • Answered by AI
  • Q3. Superclass of java
  • Ans. 

    Object class is the superclass of all classes in Java.

    • Object class provides basic functionalities like toString(), equals(), hashCode() etc.

    • All classes in Java directly or indirectly inherit from Object class.

    • Object class is located in java.lang package.

    • Example: String class extends Object class.

  • Answered by AI
  • Q4. Write the program to find smaller value from 3 input
  • Ans. 

    Program to find the smallest value from 3 inputs.

    • Compare the first two inputs and store the smaller value.

    • Compare the stored value with the third input and update if smaller.

    • Return the final stored value as the smallest value.

  • Answered by AI
  • Q5. How to create the table
  • Ans. 

    To create a table, use SQL CREATE TABLE statement with column names and data types.

    • Specify the table name after CREATE TABLE keyword

    • List column names and data types separated by commas inside parentheses

    • Add any constraints like PRIMARY KEY or FOREIGN KEY if needed

    • Example: CREATE TABLE customers (id INT PRIMARY KEY, name VARCHAR(50), email VARCHAR(100))

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I had a interview as a fresher. So they were ask normal questions only and they have taken 2 round of technical interview for me and then HR interview

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Nov 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java basics, College Projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good. Be confident and answer. If you don't know the answer, tell that without hesitation.

Mphasis Interview FAQs

How many rounds are there in Mphasis Software Engineer interview?
Mphasis interview process usually has 2-3 rounds. The most common rounds in the Mphasis interview process are Technical, Aptitude Test and HR.
How to prepare for Mphasis Software Engineer 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 Software Engineering, Javascript, Java, SQL and HTML.
What are the top questions asked in Mphasis Software Engineer interview?

Some of the top questions asked at the Mphasis Software Engineer interview -

  1. Familiar languages you are going through What you learn in lockd...read more
  2. 2 programming questions Find the 2nd greatest in 2 different w...read more
  3. Write the program to find smaller value from 3 inp...read more
How long is the Mphasis Software Engineer interview process?

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

Tell us how to improve this page.

Mphasis Software Engineer Interview Process

based on 46 interviews

5 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • HR Round - 1
  • Technical Round - 3
  • HR Round - 2
View more
Mphasis Software Engineer Salary
based on 6.3k salaries
₹2 L/yr - ₹11 L/yr
27% less than the average Software Engineer Salary in India
View more details

Mphasis Software Engineer Reviews and Ratings

based on 617 reviews

3.2/5

Rating in categories

3.1

Skill development

3.5

Work-life balance

2.6

Salary

3.2

Job security

3.2

Company culture

2.5

Promotions

3.0

Work satisfaction

Explore 617 Reviews and Ratings
Sr. Software Engineer

Pune

4-6 Yrs

₹ 3.75-8 LPA

Explore more jobs
Software Engineer
6.3k salaries
unlock blur

₹2 L/yr - ₹11.1 L/yr

Senior Software Engineer
5.6k salaries
unlock blur

₹6 L/yr - ₹23.5 L/yr

Associate Software Engineer
4.6k salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Module Lead
2.4k salaries
unlock blur

₹9.5 L/yr - ₹34.3 L/yr

Transaction Processing Officer
2.3k salaries
unlock blur

₹1.5 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Mphasis with

Cognizant

3.8
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