Upload Button Icon Add office photos

Filter interviews by

Mphasis Senior Developer Interview Questions and Answers

Updated 5 Jun 2024

Mphasis Senior Developer Interview Experiences

1 interview found

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

I applied via Job Portal and was interviewed in Jun 2022. 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 

General questions about the technology

Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Pray and attend

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Reverse an array using Java 8
  • Ans. 

    Using Java 8, reverse an array of strings

    • Use Arrays.stream() to convert the array to a stream

    • Use Collections.reverse() to reverse the stream

    • Use Collectors.toList() to convert the stream back to a list

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

(2 Questions)

  • Q1. Code a controller class , service class, entity and repository
  • Ans. 

    Code a controller, service, entity, and repository classes for a software application.

    • Create a controller class to handle incoming requests and interact with the service layer.

    • Develop a service class to implement business logic and interact with the repository.

    • Define an entity class to represent data in the application.

    • Implement a repository class to handle database operations for the entity.

  • Answered by AI
  • Q2. Basic questions about steams

Interview Preparation Tips

Topics to prepare for UST Senior Developer interview:
  • Spring Boot
  • Microserviecs

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy exam sample available on youtube

Round 2 - Technical 

(2 Questions)

  • Q1. What are step functions.
  • Ans. 

    Step functions are a type of serverless function that allow you to create workflows by chaining multiple functions together.

    • Step functions are used to coordinate multiple AWS services into serverless workflows.

    • They allow you to define a series of steps in a workflow, with each step being a separate function.

    • You can use step functions to handle complex business logic, long-running processes, and error handling.

    • Step func...

  • Answered by AI
  • Q2. How to scale lambdas
  • Ans. 

    Scaling lambdas involves optimizing memory usage, increasing concurrency, and managing dependencies.

    • Optimize memory usage by reducing unnecessary variables and objects

    • Increase concurrency by using asynchronous programming and parallel processing

    • Manage dependencies by breaking down functions into smaller, more modular components

    • Consider using AWS Lambda Provisioned Concurrency for consistent performance

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. How did you handled a difficult collegelue
  • Ans. 

    I addressed the issue directly and professionally, seeking to understand their perspective and find common ground.

    • Approached the colleague privately to discuss the issue

    • Listened actively to their concerns and perspective

    • Sought to find common ground and reach a resolution

    • Maintained professionalism and respect throughout the conversation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Managerial round. Behavioral and cloud technology scenario based questions. Interviewer very friendly and open

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is singleton class
  • Ans. 

    A singleton class is a class that can only have one instance created throughout the application.

    • Singleton classes are often used for logging, caching, database connections, and thread pools.

    • They have a private constructor to prevent multiple instances from being created.

    • The class typically provides a static method to access the single instance.

  • Answered by AI
  • Q2. What is Method reference
  • Ans. 

    Method reference is a shorthand syntax for lambda expressions to call a method.

    • Method reference is used to refer to a method without invoking it.

    • It can be used to make code more concise and readable.

    • There are four types of method references: static, instance, constructor, and array constructor.

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write the code in eggplant
  • Ans. 

    Writing code in eggplant for Senior Developer interview

    • Use 'click' to simulate a mouse click on an element

    • Use 'typeText' to enter text into a field

    • Use 'verify' to check if an element is present on the screen

  • Answered by AI
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 Feb 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Core JavaScript concept
  • Q2. Write an example for the closure
  • Ans. 

    A closure is a function that has access to its own scope, as well as the outer scope in which it was defined.

    • A closure can access variables from its outer function even after the outer function has finished executing.

    • Closures are commonly used in event handlers, callbacks, and asynchronous code.

    • Example: const outerFunction = () => { const outerVar = 'I am outer'; return () => { console.log(outerVar); }; }; const innerF...

  • Answered by AI
  • Q3. Diffrence between Normal and Arrow Fuction and its example
  • Ans. 

    Arrow functions are concise syntax for writing functions in JavaScript, compared to normal functions.

    • Arrow functions do not have their own 'this' keyword, they inherit it from the parent scope.

    • Arrow functions do not have 'arguments' object.

    • Arrow functions cannot be used as constructors.

    • Arrow functions are more concise and easier to read compared to normal functions.

  • Answered by AI
  • Q4. React States and Props, Hook, Life cycle method

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Array qs reverse
  • Q2. Question about angular and react
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Write code on bot scenarios

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Referral and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Write the implementation for list in Scala
  • Ans. 

    Implementation of list in Scala

    • Use the List class in Scala to create a list

    • Lists are immutable and can hold elements of the same type

    • Example: val myList = List(1, 2, 3, 4, 5)

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jun 2022. There were 4 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 - Technical 

(1 Question)

  • Q1. Good to have knowledge of architechture of any features
Round 3 - Technical 

(1 Question)

  • Q1. Keep good practice with resume
Round 4 - HR 

(1 Question)

  • Q1. Not Available to say

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident and answer their question without hesitation

Mphasis Interview FAQs

How many rounds are there in Mphasis Senior Developer interview?
Mphasis interview process usually has 3 rounds. The most common rounds in the Mphasis interview process are Resume Shortlist, Coding Test and HR.
How to prepare for Mphasis Senior Developer 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 C++, ARM, C, Firmware and Microcontroller.

Tell us how to improve this page.

Mphasis Senior Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Mphasis Senior Developer Salary
based on 81 salaries
₹5.6 L/yr - ₹23 L/yr
12% less than the average Senior Developer Salary in India
View more details

Mphasis Senior Developer Reviews and Ratings

based on 7 reviews

3.4/5

Rating in categories

3.2

Skill development

4.2

Work-life balance

3.3

Salary

3.8

Job security

4.2

Company culture

2.2

Promotions

3.3

Work satisfaction

Explore 7 Reviews and Ratings
Software Engineer
6.3k salaries
unlock blur

₹2 L/yr - ₹11 L/yr

Senior Software Engineer
5.6k salaries
unlock blur

₹6 L/yr - ₹23 L/yr

Associate Software Engineer
4.6k salaries
unlock blur

₹2 L/yr - ₹7 L/yr

Module Lead
2.4k salaries
unlock blur

₹8.1 L/yr - ₹33 L/yr

Transaction Processing Officer
2.3k salaries
unlock blur

₹1.4 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