AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
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
3.3

based on 9k Reviews

Play video Play video Video summary
  • About
  • Reviews
    9k
  • Salaries
    70.2k
  • Interviews
    843
  • Jobs
    2
  • Benefits
    914
  • Photos
    91
  • Posts
    5

Filter interviews by

Mphasis Software Engineer Interview Questions and Answers

Updated 28 May 2025

22 Interview questions

A Software Engineer was asked 10mo ago
Q. What challenges did you face in your project?
Ans. 

Faced challenges in project management, technical hurdles, and team collaboration, impacting timelines and deliverables.

  • Technical challenges: Encountered issues with integrating third-party APIs, which required extensive debugging and adjustments.

  • Time management: Faced tight deadlines that led to prioritizing features, resulting in some functionalities being deferred to future releases.

  • Team collaboration: Communic...

A Software Engineer was asked 11mo ago
Q. Explain data binding in Angular.
Ans. 

Data binding in Angular is a way to automatically synchronize data between the model and the view.

  • Data binding allows you to bind data from the component to the view and vice versa.

  • There are two types of data binding in Angular: one-way binding and two-way binding.

  • One-way binding updates the view when the model changes, while two-way binding updates both the model and the view simultaneously.

  • Example: {{ data }} in...

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
View answers (278)
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
View answers (528)
asked in Tech Mahindra
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
View answers (81)
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
View answers (22)
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
View answers (9)
View All
A Software Engineer was asked
Q. What is the difference between functional and non-functional testing?
Ans. 

Functional testing checks if the software functions as expected, while non-functional testing checks other aspects like performance and usability.

  • Functional testing focuses on the specific functions of the software.

  • Non-functional testing focuses on aspects like performance, usability, security, and scalability.

  • Examples of functional testing include unit testing, integration testing, and system testing.

  • Examples of ...

A Software Engineer was asked
Q. What is the difference between smoke and sanity testing?
Ans. 

Smoke testing is a quick test to check if the basic functionalities of the software are working, while sanity testing is a more thorough test to check if the specific features are working as expected.

  • Smoke testing is a shallow and wide test, while sanity testing is a deep and narrow test.

  • Smoke testing is done to ensure the stability of the system, while sanity testing is done to ensure the rationality of the syste...

What people are saying about Mphasis

View All
a data scientist
1w
Best organization in terms of Learning, Opportunity, WLB
Current Role: Data Scientist (Gen AI) YOE: 5.5 CCTC: 18.5 LPA Offers I have: 1. Quantiphi Analytics (Bangalore) - 32.9 LPA (29 Fixed + 1 JB + 2.9 Variable) 2. STG Labs (Bangalore) - 33 LPA (32 Fixed + 1 JB) 3. Rakuten Symphony (Bangalore) - 32.8 LPA (28 Fixed + 1 JB + 2.8 Bonus) 4. IBM (Hometown) - 32.5 LPA (Fixed) Offers in Pipeline: 1. Programmers.io - Remote 2. Worley - Remote 3. C5i - Bangalore 4. Wipro - Bangalore 5. Capgemini - Hometown 6. MPhasis - Hyderabad I want to know which organization will best considering Learning, Opportunity, WLB.
Got a question about Mphasis?
Ask anonymously on communities.
A Software Engineer was asked
Q. Write a program to determine if a number is prime.
Ans. 

A program to print all prime numbers up to a given limit.

  • Iterate through numbers up to the limit

  • For each number, check if it is divisible by any number from 2 to its square root

  • If it is not divisible, print it as a prime number

🔥 Asked by recruiter 2 times
A Software Engineer was asked
Q. Explain the concepts of OOPS.
Ans. 

OOPS concepts are the principles of Object-Oriented Programming that help in designing and implementing software systems.

  • Encapsulation - bundling of data and methods that operate on that data

  • Inheritance - ability of a class to inherit properties and methods from a parent class

  • Polymorphism - ability of objects to take on multiple forms or behaviors

  • Abstraction - hiding of complex implementation details and showing o...

A Software Engineer was asked
Q. What is abstraction?
Ans. 

Abstraction is the process of hiding complex implementation details and exposing only the necessary information.

  • Abstraction is a way to manage complexity by breaking down a system into smaller, more manageable parts.

  • It allows us to focus on the essential features of a system while ignoring the non-essential details.

  • Abstraction can be achieved through the use of interfaces, abstract classes, and encapsulation.

  • For e...

Are these interview questions helpful?
🔥 Asked by recruiter 3 times
A Software Engineer was asked
Q. What is inheritance?
Ans. 

Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

  • Inheritance allows code reusability and saves time and effort in writing new code.

  • The existing class is called the parent or base class, and the new class is called the child or derived class.

  • The child class inherits all the properties and methods of the parent class and can also add...

A Software Engineer was asked
Q. Write a program to find the smallest value from three inputs.
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.

A Software Engineer was asked
Q. How do you create a 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))

1 2 3

Mphasis Software Engineer Interview Experiences

58 interviews found

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 11 Mar 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

Aptitude, english, coding,mcqs

Round 2 - Group Discussion 

Group discussion on few topics

Round 3 - Technical 

(2 Questions)

  • Q1. Java full stack development
  • Add your answer
  • Q2. Python fundaments
  • Add your answer
Round 4 - HR 

(1 Question)

  • Q1. Relocation , package, wfo/wfh
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - I would suggest this company as a good learning place for the freshers.
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 9 Nov 2024

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?
  • Add your answer
  • Q2. Python and java spring cloud
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - all good
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 16 Sep 2024

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 hr, aptitude question

Round 2 - Technical 

(2 Questions)

  • Q1. Basic OOPS, SQL, DBMS questions
  • Add your answer
  • Q2. One coding question
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 2 May 2024

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

I applied via Referral and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

HackerRank test with questions including logical thinking and English

Round 2 - Technical 

(3 Questions)

  • Q1. Basics like method overloading & Overridding, sting concepts, file handling & basics of HTML, CSS
  • Add your answer
  • Q2. Linear and binary search algorithm
  • Ans. 

    Linear search checks each element in a list sequentially, while binary search divides the list in half at each step.

    • Linear search has a time complexity of O(n), while binary search has a time complexity of O(log n).

    • Linear search is used for unsorted lists, while binary search is used for sorted lists.

    • Example: Linear search - searching for a name in a phone book. Binary search - searching for a word in a dictionary.

  • Answered by AI
    Add your answer
  • Q3. SQL queris, joins, truncat
  • Add your answer
Round 3 - One-on-one 

(2 Questions)

  • Q1. Manager interaction on client handling related queries
  • Add your answer
  • Q2. Managerial Questions on handling priority tasks and handling team
  • Add your answer

Interview Preparation Tips

Topics to prepare for Mphasis Software Engineer interview:
  • DSA
  • Python
  • Robot framework
  • OOPS
Interview preparation tips for other job seekers - Not to be nervous and be straight to point with answers and be blunt if u don't know but showcases you would be interested to learn when given opportunity in future.

Skills evaluated in this interview

Anonymous

Software Engineer Interview Questions & Answers

user image Naveen yadav

posted on 5 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Sql questions on rdbms
  • Add your answer
  • Q2. Java questions on ooops
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Depends on project for which you are selected
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 16 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Interview questions about datastage
  • Add your answer
Anonymous

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
  • Add your answer
  • Q2. Coding quastion using java 8
  • Add your answer

Interview Preparation Tips

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

Skills evaluated in this interview

Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 16 Sep 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. OOP concept for all
  • Add your answer
  • Q2. Questions based on your past work experience
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 9 Mar 2024

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

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. About my previous project
  • Add your answer
  • Q2. Python basic questions
  • Add your answer
  • Q3. Decorators and it's functionalty
  • Ans. 

    Decorators in software engineering are functions that modify the behavior of other functions or methods.

    • Decorators are used to add functionality to existing functions without modifying their code.

    • They are commonly used in Python to add additional behavior to functions or classes.

    • Decorators are implemented using the @ symbol followed by the decorator function name.

    • They can be used for logging, authentication, caching, a...

  • Answered by AI
    Add your answer
  • Q4. Classes and lists
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on the work

Skills evaluated in this interview

Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Aug 2024

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

I applied via Campus Placement and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Good mix of questions with aptitude and coding

Round 2 - Technical 

(2 Questions)

  • Q1. Self intro oops sql
  • Add your answer
  • Q2. What is meant by polymorphism? abstarction code
  • Ans. 

    Polymorphism in programming refers to the ability of a function or method to behave differently based on the object it is called with.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance in Java allows a subclass to override a method of its superclass, e...

  • Answered by AI
    Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Challeneges faced in project
  • Add your answer
  • Q2. How you have overcomed
  • Ans. 

    I have overcome challenges by staying focused, seeking help when needed, and continuously learning and improving.

    • Staying focused on the end goal and breaking down tasks into manageable steps

    • Seeking help from colleagues, mentors, or online resources when facing difficult problems

    • Continuously learning new technologies and techniques to improve my skills and overcome challenges

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basics well in oops and python and mainly java
Anonymous
More about working at Mphasis
  • HQ - Bangalore/Bengaluru, Karnataka, India
  • IT Services & Consulting
  • 10k-50k Employees (India)
  • Public
  • Financial Services
  • Hardware & Networking
  • Insurance
  • Emerging Technologies

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. Ours was a campus interview so they asked me y I was studying in that particula...read more
  2. Familiar languages you are going through What you learn in lockd...read more
  3. 2 programming questions Find the 2nd greatest in 2 different w...read more
What are the most common questions asked in Mphasis Software Engineer HR round?

The most common HR questions asked in Mphasis Software Engineer interview are -

  1. What are your strengths and weakness...read more
  2. Tell me about yourse...read more
  3. Where do you see yourself in 5 yea...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 Interviews By Designations

  • Mphasis Associate Software Engineer Interview Questions
  • Mphasis Software Engineer Interview Questions
  • Mphasis Senior Software Engineer Interview Questions
  • Mphasis Module Lead Interview Questions
  • Mphasis Transaction Processing Officer Interview Questions
  • Mphasis Software Developer Interview Questions
  • Mphasis Delivery Module Lead Interview Questions
  • Mphasis Automation Test Engineer Interview Questions
  • Show more
  • Mphasis Senior Test Engineer Interview Questions
  • Mphasis Project Lead Interview Questions

Overall Interview Experience Rating

3.9/5

based on 50 interview experiences

Difficulty level

Easy 31%
Moderate 69%

Duration

Less than 2 weeks 72%
2-4 weeks 20%
4-6 weeks 4%
More than 8 weeks 4%
View more

Software Engineer Interview Questions from Similar Companies

LTIMindtree
LTIMindtree Software Engineer Interview Questions
3.7
 • 286 Interviews
Persistent Systems
Persistent Systems Software Engineer Interview Questions
3.6
 • 129 Interviews
CGI Group
CGI Group Software Engineer Interview Questions
4.0
 • 82 Interviews
GlobalLogic
GlobalLogic Software Engineer Interview Questions
3.6
 • 56 Interviews
Virtusa Consulting Services
Virtusa Consulting Services Software Engineer Interview Questions
3.7
 • 44 Interviews
Optum Global Solutions
Optum Global Solutions Software Engineer Interview Questions
4.0
 • 43 Interviews
DXC Technology
DXC Technology Software Engineer Interview Questions
3.7
 • 38 Interviews
Hexaware Technologies
Hexaware Technologies Software Engineer Interview Questions
3.5
 • 38 Interviews
Societe Generale Global Solution Centre
Societe Generale Global Solution Centre Software Engineer Interview Questions
3.7
 • 36 Interviews
Coforge
Coforge Software Engineer Interview Questions
3.3
 • 33 Interviews
View all
Mphasis Software Engineer Salary
based on 6.7k salaries
₹2 L/yr - ₹9.5 L/yr
29% less than the average Software Engineer Salary in India
View more details

Mphasis Software Engineer Reviews and Ratings

based on 669 reviews

3.2/5

Rating in categories

3.1

Skill development

3.5

Work-life balance

2.5

Salary

3.2

Job security

3.2

Company culture

2.4

Promotions

3.0

Work satisfaction

Explore 669 Reviews and Ratings
Mphasis Salaries in India
Software Engineer
6.7k salaries
unlock blur

₹2 L/yr - ₹9.5 L/yr

Senior Software Engineer
5.9k salaries
unlock blur

₹6.1 L/yr - ₹25 L/yr

Associate Software Engineer
4.9k salaries
unlock blur

₹2 L/yr - ₹5.6 L/yr

Module Lead
2.5k salaries
unlock blur

₹9.5 L/yr - ₹37 L/yr

Transaction Processing Officer
2.4k salaries
unlock blur

₹1.4 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Mphasis with
Cognizant

Cognizant

3.7
Compare
Wipro

Wipro

3.7
Compare
Accenture

Accenture

3.8
Compare
TCS

TCS

3.6
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Mphasis Interview Questions >
  • Mphasis Software Engineer Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter