i
Mphasis
Filter interviews by
BPO, or Business Process Outsourcing, involves contracting third-party service providers to handle specific business functions.
Customer Support: Handling inquiries and complaints via phone, email, or chat.
Technical Support: Assisting customers with technical issues related to products or services.
Data Entry: Inputting and managing data for businesses, such as customer information or inventory.
Human Resources: Mana...
Create a simple counter component in React that increments and decrements a value.
Use useState to manage the counter state: const [count, setCount] = useState(0);
Create buttons for incrementing and decrementing the count: <button onClick={() => setCount(count + 1)}>Increment</button>
Display the current count: <p>Current Count: {count}</p>
Ensure to handle edge cases, like preventing negat...
One program I know is a simple calculator program written in Python.
The program takes user input for two numbers and an operator (+, -, *, /).
It then performs the operation and displays the result.
Example: input 5, +, 3 -> output 8
A program in Java to separate words and numbers.
Use regular expressions to separate words and numbers.
Iterate through the input string and check if each character is a word or a number.
Store the words and numbers in separate arrays.
Code to remove duplicates from an array of strings
Use a Set to store unique elements
Iterate through the array and add each element to the Set
Convert the Set back to an array to get the final result
Object-oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.
Objects are instances of classes, which define the structure and behavior of the objects.
Encapsulation allows data to be hidden within objects and only accessed through methods.
Inheritance allows classes to inherit attributes and methods from other classes.
Polymorphism allows objects to be treated...
I am open to any location for the job.
I am willing to relocate for the job
I am flexible with the location
I am excited about the opportunity to work in different places
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
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 t...
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 s...
Aptitude, english, coding,mcqs
Group discussion on few topics
I applied via Campus Placement and was interviewed in Oct 2024. There were 4 interview rounds.
Online test -math & quants,verbal,puzzle,computer programming,logical
One program I know is a simple calculator program written in Python.
The program takes user input for two numbers and an operator (+, -, *, /).
It then performs the operation and displays the result.
Example: input 5, +, 3 -> output 8
Yes, I am open to relocating for the right opportunity to grow and contribute to the team effectively.
Relocation can provide exposure to new technologies and methodologies.
It allows for networking with professionals in different regions.
I am adaptable and enjoy exploring new environments, which can enhance my creativity.
For example, moving to a tech hub can offer more collaboration opportunities.
I applied via Recruitment Consulltant and was interviewed in Oct 2024. There were 2 interview rounds.
Basic arithmatic and output questions
I worked on a project that involved developing a recommendation system using collaborative filtering algorithms.
Implemented collaborative filtering algorithms like user-based and item-based recommendation systems
Utilized cosine similarity and Pearson correlation coefficient for calculating similarity between users/items
Used matrix factorization techniques like Singular Value Decomposition (SVD) for recommendation
Evalua...
Object-oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.
Objects are instances of classes, which define the structure and behavior of the objects.
Encapsulation allows data to be hidden within objects and only accessed through methods.
Inheritance allows classes to inherit attributes and methods from other classes.
Polymorphism allows objects to be treated as i...
Code to remove duplicates from an array of strings
Use a Set to store unique elements
Iterate through the array and add each element to the Set
Convert the Set back to an array to get the final result
I am open to any location for the job.
I am willing to relocate for the job
I am flexible with the location
I am excited about the opportunity to work in different places
Yes, I am flexible with shifts and can work any shift required.
I am open to working any shift, including nights, weekends, and holidays
I understand the importance of being flexible in the software engineering field
I have experience working different shifts in previous roles, such as during project deadlines or support rotations
I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.
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
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...
Use Java Stream API to apply a 10% salary hike for employees with over 5 years of experience.
Use a List<Employee> to store employee data.
Filter employees with experience > 5 years using stream().filter().
Map the filtered employees to update their salary by multiplying with 1.1.
Collect the results back into a List using collect(Collectors.toList()).
Example: employees.stream().filter(e -> e.getExperience() &g...
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...
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
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...
I applied via Referral and was interviewed in Apr 2024. There were 3 interview rounds.
HackerRank test with questions including logical thinking and English
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.
I appeared for an interview in Mar 2025, where I was asked the following questions.
In five years, I envision myself as a skilled software engineer, leading projects and mentoring junior developers.
I aim to deepen my expertise in software development, particularly in areas like cloud computing and machine learning.
I hope to take on leadership roles, guiding teams through complex projects and fostering a collaborative environment.
I aspire to contribute to open-source projects, enhancing my skills while...
I excel in problem-solving and teamwork, but I sometimes struggle with time management under tight deadlines.
Strength: Strong problem-solving skills. For example, I successfully debugged a complex issue in a project, improving performance by 30%.
Strength: Excellent teamwork. I collaborated with cross-functional teams on a project, leading to a successful product launch.
Limitation: Time management. I occasionally undere...
I appeared for an interview in Mar 2025, where I was asked the following questions.
Create a simple counter component in React that increments and decrements a value.
Use useState to manage the counter state: const [count, setCount] = useState(0);
Create buttons for incrementing and decrementing the count: <button onClick={() => setCount(count + 1)}>Increment</button>
Display the current count: <p>Current Count: {count}</p>
Ensure to handle edge cases, like preventing negative c...
I appeared for an interview in Mar 2025, where I was asked the following questions.
Top trending discussions
Some of the top questions asked at the Mphasis interview for freshers -
The duration of Mphasis interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 58 interview experiences
Difficulty level
Duration
based on 9.1k reviews
Rating in categories
Software Engineer
6.7k
salaries
| ₹4 L/yr - ₹8.4 L/yr |
Senior Software Engineer
6k
salaries
| ₹6.6 L/yr - ₹20 L/yr |
Associate Software Engineer
4.9k
salaries
| ₹2 L/yr - ₹5.6 L/yr |
Module Lead
2.5k
salaries
| ₹15.8 L/yr - ₹27 L/yr |
Transaction Processing Officer
2.3k
salaries
| ₹1.4 L/yr - ₹4.7 L/yr |
Cognizant
Wipro
Accenture
TCS