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 and Answers for Experienced

Updated 10 Jul 2025
Popular Designations

199 Interview questions

A Senior Software Developer was asked
Q. What is a trigger?
Ans. 

A trigger is a special kind of stored procedure that is automatically executed when certain events occur in a database.

  • Triggers are used to maintain data integrity by enforcing business rules or cascading changes.

  • They can be set to execute before or after INSERT, UPDATE, or DELETE operations.

  • Examples include auditing changes to a table, updating related records in other tables, or enforcing constraints.

View all Senior Software Developer interview questions
A Senior Software Developer was asked
Q. What is a primary key?
Ans. 

Primary key is a unique identifier for each record in a database table.

  • Primary key ensures each record in a table is uniquely identified.

  • It must have a unique value for each record.

  • Primary key can be a single column or a combination of columns.

  • Examples: ID column in a user table, combination of first name and last name in an employee table.

View all Senior Software Developer interview questions
A Module Lead was asked
Q. What are the various joins in SQL?
Ans. 

Various types of joins in SQL include inner join, left join, right join, and full outer join.

  • Inner join: Returns rows when there is a match in both tables.

  • Left join: Returns all rows from the left table and the matched rows from the right table.

  • Right join: Returns all rows from the right table and the matched rows from the left table.

  • Full outer join: Returns rows when there is a match in either table.

View all Module Lead interview questions
A Module Lead was asked
Q. What is a recursive query?
Ans. 

A recursive query is a query that refers to itself in order to retrieve data from a database.

  • A recursive query is used to retrieve hierarchical data such as organizational structures or family trees.

  • It typically involves a common table expression (CTE) in SQL.

  • The query continues to execute until a specific condition is met, such as reaching the root node in a tree structure.

  • Example: Finding all employees and their...

View all Module Lead interview questions
A Module Lead was asked
Q. What is Indexing in SQL and why do we use Indexing?
Ans. 

Indexing in SQL is a way to optimize database performance by creating a data structure that allows for faster retrieval of data.

  • Indexing is a technique used to quickly locate and access the rows in a database table.

  • It works by creating an ordered list of values from one or more columns in a table.

  • By using indexes, the database engine can quickly find the rows that match a certain condition without having to scan t...

View all Module Lead interview questions
A Module Testing Lead was asked
Q. When a transaction is in process and the power goes down, what would be the state of the transaction in the user account?
Ans. 

The transaction would not have been completed and the user account would not have been updated.

  • Transaction would be in an incomplete state

  • User account would not reflect the transaction

  • Data integrity may be compromised

View all Module Testing Lead interview questions
A Module Lead was asked
Q. If we have partitions in databases, why do we need partitions in Informatica as well?
Ans. 

Partitions in Informatica help in parallel processing and improving performance.

  • Partitions in databases and Informatica serve different purposes

  • Informatica partitions help in parallel processing of data

  • Improves performance by distributing data processing across multiple nodes

  • Allows for better resource utilization and faster data processing

  • Example: Partitioning in Informatica can be used to process large volumes of...

View all Module Lead interview questions
Are these interview questions helpful?
An AWS Devops Engineer was asked
Q. What is a webhook and why is it used?
Ans. 

Webhook is a method of augmenting or altering the behavior of a web page, or web application, with custom callbacks.

  • Webhook is a way for an application to provide other applications with real-time information.

  • It allows developers to receive instant notifications when a specific event occurs.

  • Webhooks are commonly used in automation, continuous integration, and deployment processes.

  • Examples include receiving notific...

View all AWS Devops Engineer interview questions
An AWS Devops Engineer was asked
Q. What is a Dockerfile? Explain.
Ans. 

Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

  • Dockerfile is used to build Docker images by specifying a series of instructions.

  • It includes commands like FROM, RUN, COPY, CMD, etc.

  • Each instruction in the Dockerfile creates a layer in the image.

  • Dockerfile is used to automate the process of creating Docker containers.

  • Example: FROM ubuntu:latest...

View all AWS Devops Engineer interview questions
A Senior Software Engineer was asked
Q. Perform a deep analysis of the code.
Ans. 

The question requires a detailed analysis of a piece of code.

  • Examine the code line by line to understand its functionality

  • Identify any potential bugs or inefficiencies in the code

  • Consider the overall design and structure of the code

  • Look for opportunities to optimize or refactor the code

  • Test different inputs to understand the code's behavior

View all Senior Software Engineer interview questions

Mphasis Interview Experiences for Experienced

375 interviews found

Test Lead Interview Questions & Answers

user image Anonymous

posted on 11 Feb 2025

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(1 Question)

  • Q1. Technical questions on Mainframes and TOSCA
Round 2 - Technical 

(1 Question)

  • Q1. Client round with technical questions on mainframes and tosca
Round 3 - HR 

(1 Question)

  • Q1. Till date they have not enrolled me even after confirming and doing my documentation
Round 4 - HR 

(1 Question)

  • Q1. Documentation round which is still going on and its been 2 months
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

10 min, simple question on programming skills

Round 2 - Technical 

(7 Questions)

  • Q1. Which Microservice communication pattern you have used?
  • Ans. 

    I have used the asynchronous messaging pattern for Microservice communication.

    • Implemented messaging queues like RabbitMQ or Kafka for decoupled communication

    • Used message brokers to enable communication between Microservices

    • Leveraged event-driven architecture for real-time updates and scalability

  • Answered by AI
  • Q2. Which Application Insight tool you have used?
  • Ans. 

    I have used Application Insights for monitoring and analyzing the performance of .NET applications.

    • Used Application Insights to track application performance metrics

    • Analyzed telemetry data to identify performance bottlenecks

    • Set up alerts and notifications for critical issues

    • Integrated Application Insights with Azure DevOps for continuous monitoring

  • Answered by AI
  • Q3. Caching Technique is used in your project
  • Ans. 

    We use in-memory caching technique in our project to improve performance and reduce database load.

    • In-memory caching is used to store frequently accessed data in memory for quick retrieval

    • Helps reduce database load and improve application performance

    • Examples: using MemoryCache in .NET, Redis caching, caching frequently accessed data like user profiles or product information

  • Answered by AI
  • Q4. Api Gateways is used in MicrosServices
  • Ans. 

    Yes, API Gateways are used in Microservices to manage and secure communication between services.

    • API Gateways act as a single entry point for clients to access multiple microservices

    • They handle authentication, authorization, rate limiting, logging, and monitoring

    • Examples of API Gateways include Kong, Apigee, and AWS API Gateway

  • Answered by AI
  • Q5. Which single sign on technology/Mechanism is used in project
  • Ans. 

    We are using OAuth 2.0 for single sign on in the project.

    • OAuth 2.0 is a widely used authorization framework that enables a third-party application to obtain limited access to an HTTP service.

    • It allows users to log in once and access multiple applications without having to log in again.

    • OAuth 2.0 provides secure delegated access to resources without sharing user credentials.

  • Answered by AI
  • Q6. What is JWT token,why we use it
  • Ans. 

    JWT token is a JSON Web Token used for secure transmission of information between parties.

    • JWT token is a compact and self-contained way to transmit information between parties.

    • It is digitally signed to verify its authenticity and integrity.

    • JWT tokens consist of three parts: header, payload, and signature.

    • They are commonly used for authentication and information exchange in web applications.

    • Example: JWT tokens are often...

  • Answered by AI
  • Q7. How to implement exception handling and filters in .net core web api
  • Ans. 

    Exception handling and filters in .NET Core Web API

    • Use try-catch blocks to handle exceptions in the code

    • Implement global exception handling middleware to catch unhandled exceptions

    • Use filters like [Authorize] for authentication and [ValidateAntiForgeryToken] for CSRF protection

    • Create custom exception filters by implementing IExceptionFilter interface

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - brush up on every thing from basic to advance

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Core java concepts concepts , multithreading, spring boot,jpa ,MySQL ,api
  • Q2. Collection framework , java8, coding Questions 2 nd largest number find
Round 2 - HR 

(1 Question)

  • Q1. Only salary discussed

Interview Preparation Tips

Interview preparation tips for other job seekers - Good overall good good work balance

Module Lead Interview Questions & Answers

user image Anonymous

posted on 6 Feb 2025

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

I appeared for an interview in Jan 2025.

Round 1 - HR 

(1 Question)

  • Q1. Project management
Round 2 - Technical 

(1 Question)

  • Q1. Payment terminology
Round 3 - One-on-one 

(1 Question)

  • Q1. Client round about product
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024.

Round 1 - Aptitude Test 

Math, coding, basic coding mcq

Round 2 - Technical 

(2 Questions)

  • Q1. Basic java, array, string
  • Q2. Based on project question they asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to learn yourself, need to do practice.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. Write a SQL Query to generate total sales and average sales in each product category from product table
  • Ans. 

    SQL query to calculate total and average sales per product category from the product table.

    • Use the SUM() function to calculate total sales.

    • Use the AVG() function to calculate average sales.

    • Group the results by product category using GROUP BY clause.

    • Example SQL query: SELECT category, SUM(sales) AS total_sales, AVG(sales) AS average_sales FROM product GROUP BY category;

  • Answered by AI
  • Q2. Unix commands for writing a new file
  • Ans. 

    Unix commands for creating a new file include 'touch', 'echo', and redirection operators.

    • Use 'touch filename' to create an empty file. Example: 'touch myfile.txt'.

    • Use 'echo' to write text to a new file. Example: 'echo Hello > myfile.txt'.

    • Use 'cat' with redirection to create a file. Example: 'cat > myfile.txt' then type text and press Ctrl+D to save.

  • Answered by AI

Module Lead Interview Questions & Answers

user image Anonymous

posted on 20 Dec 2024

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Explain about yourself, Automation framework and d2d activities
  • Ans. 

    I am an experienced Module Lead with expertise in Automation framework design and end-to-end testing activities.

    • I have designed and implemented automation frameworks using tools like Selenium and Appium.

    • I have experience in creating reusable components, libraries, and utilities for automation.

    • I have conducted end-to-end testing activities including test planning, execution, and reporting.

    • I have worked on continuous int...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Why we have to hire for you??
  • Ans. 

    I bring a unique combination of experience, skills, and dedication that will greatly benefit the team and help achieve operational excellence.

    • Proven track record of successfully managing operations and improving efficiency

    • Strong leadership skills with the ability to motivate and inspire team members

    • Excellent problem-solving abilities to address challenges and drive results

    • Dedicated work ethic and commitment to achievin...

  • Answered by AI
  • Q2. Explain about your self
  • Ans. 

    Experienced Operations Officer with a background in managing daily operations, optimizing processes, and ensuring efficiency.

    • Managed a team of employees to ensure smooth operations

    • Implemented process improvements to increase efficiency

    • Analyzed data to make informed decisions

    • Collaborated with other departments to achieve organizational goals

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain about your process
  • Ans. 

    My process for handling operations involves thorough planning, effective communication, and continuous monitoring.

    • Develop a detailed operations plan outlining tasks, timelines, and responsibilities

    • Communicate clearly with team members to ensure everyone is on the same page

    • Regularly monitor progress and make adjustments as needed

    • Utilize technology and tools to streamline operations and improve efficiency

  • Answered by AI
  • Q2. How much yours expatriates
  • Ans. 

    We currently have 15 expatriates working in various departments.

    • We have a total of 15 expatriates in our organization.

    • The expatriates are working in different departments such as finance, marketing, and operations.

    • Some of the expatriates are on short-term assignments while others are on long-term contracts.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. What strategies do you use to handle pressure in a work environment?
  • Ans. 

    I manage pressure through prioritization, effective communication, and maintaining a positive mindset.

    • Prioritization: I assess tasks based on urgency and importance, focusing on high-impact activities first. For example, during a project deadline, I create a list of tasks and tackle the most critical ones first.

    • Effective Communication: I keep open lines of communication with my team and stakeholders to ensure everyone ...

  • Answered by AI
  • Q2. How do you manage multiple projects concurrently in your professional life?
  • Ans. 

    I prioritize tasks, utilize project management tools, and maintain clear communication to manage multiple projects effectively.

    • Prioritization: I assess project deadlines and importance, focusing on high-impact tasks first. For example, I use a matrix to categorize tasks.

    • Project Management Tools: I leverage tools like Trello or Asana to track progress and deadlines, ensuring visibility for all stakeholders.

    • Regular Check...

  • Answered by AI
  • Q3. What leadership skills do you possess that contribute to your success?
  • Ans. 

    I possess strong communication, adaptability, and problem-solving skills that drive team success and project delivery.

    • Effective Communication: I ensure clarity in conveying project goals, which helps align the team and stakeholders. For example, I hold regular check-ins to discuss progress and address concerns.

    • Adaptability: I thrive in dynamic environments and can pivot strategies when faced with unexpected challenges....

  • Answered by AI
  • Q4. What strategies can be employed to effectively handle negative situations?
  • Ans. 

    Employing effective strategies can transform negative situations into opportunities for growth and improvement.

    • Maintain open communication: Encourage team members to express concerns and provide feedback, fostering a culture of transparency.

    • Stay calm and composed: In high-pressure situations, demonstrating calmness can help stabilize the team and facilitate problem-solving.

    • Focus on solutions: Shift the focus from the p...

  • Answered by AI

Module Lead Interview Questions & Answers

user image Kamlesh Kumar

posted on 24 Jun 2025

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

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. What is the disadvantage of microservices?
  • Ans. 

    Microservices can lead to increased complexity, operational overhead, and challenges in data management and inter-service communication.

    • Increased Complexity: Managing multiple services can complicate deployment and monitoring. For example, a simple feature may require coordination across several microservices.

    • Operational Overhead: Each microservice may require its own infrastructure, leading to higher costs and resourc...

  • Answered by AI
  • Q2. What are the changes in memory management in java8 ?
  • Ans. 

    Java 8 introduced several enhancements in memory management, including the Metaspace and improvements in garbage collection.

    • Metaspace replaces PermGen: In Java 8, the PermGen space is replaced by Metaspace, which dynamically resizes based on the application's needs.

    • Improved Garbage Collection: Java 8 introduced the G1 garbage collector as the default, optimizing memory management for large heaps.

    • Compressed OOPs: Java 8...

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Mphasis?
Ask anonymously on communities.

Mphasis Interview FAQs

How many rounds are there in Mphasis interview for experienced candidates?
Mphasis interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Mphasis interview process for experienced candidates are Technical, HR and One-on-one Round.
How to prepare for Mphasis interview for experienced candidates?
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 for experienced candidates?

Some of the top questions asked at the Mphasis interview for experienced candidates -

  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
What are the most common questions asked in Mphasis HR round for experienced candidates?

The most common HR questions asked in Mphasis interview are for experienced candidates -

  1. Why should we hire y...read more
  2. Where do you see yourself in 5 yea...read more
  3. What are your strengths and weakness...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.

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 221 interview experiences

Difficulty level

Easy 23%
Moderate 68%
Hard 10%

Duration

Less than 2 weeks 77%
2-4 weeks 16%
4-6 weeks 5%
6-8 weeks 2%
More than 8 weeks 1%
View more

Interview Questions from Similar Companies

LTIMindtree Interview Questions
3.7
 • 3k Interviews
DXC Technology Interview Questions
3.7
 • 839 Interviews
EXL Service Interview Questions
3.7
 • 805 Interviews
Coforge Interview Questions
3.3
 • 589 Interviews
eClerx Interview Questions
3.2
 • 577 Interviews
View all

Mphasis Reviews and Ratings

based on 9.1k reviews

3.3/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 9.1k Reviews and Ratings
Ingenium Developer

Mumbai

5-7 Yrs

Not Disclosed

Quality Analyst

Hyderabad / Secunderabad,

Chennai

+1

3-8 Yrs

₹ 2.2-6.5 LPA

QA Underwriter

Pune,

Chennai

0-3 Yrs

Not Disclosed

Explore more jobs
Software Engineer
6.7k salaries
unlock blur

₹4 L/yr - ₹8.4 L/yr

Senior Software Engineer
6k salaries
unlock blur

₹6.6 L/yr - ₹20 L/yr

Associate Software Engineer
4.9k salaries
unlock blur

₹2 L/yr - ₹5.6 L/yr

Module Lead
2.5k salaries
unlock blur

₹15.8 L/yr - ₹27 L/yr

Transaction Processing Officer
2.3k salaries
unlock blur

₹1.4 L/yr - ₹4.7 L/yr

Explore more salaries
Compare Mphasis with

Cognizant

3.7
Compare

Wipro

3.7
Compare

Accenture

3.7
Compare

TCS

3.6
Compare
write
Share an Interview