Mphasis pvt limited interview experience Real time questions & tips from candidates to crack your interview

Associate Software Engineer

Mphasis pvt limited
upvote
share-icon
2 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Journey
I started learning to code and practiced every day. I focused on fundamentals in coding. In starting I watched many videos on youtube for making my learning effective. first focus on basic fundamentals. for DSA, I chose java. I did practice easy and medium problems of coding. I followed geeks for geeks, javatpoint and Interviewbit for Interview preparation. I wrote important questions in a notebook and prepared for the interview. that was my mantra for getting a job in Mphasis.
Application story
I got a referral from Newton school. I got a referral from Naukri.com as well. Most of the questions were from coding background in the technical round and after that cleared HR round. HR round questions were quite simple
Why selected/rejected for the role?
I clearly answered every question. Be confident while giving an interview. I Worked on my communication skills. followed online materials for interview questions.
Preparation
Duration: 6 Months
Topics: HTML - CSS most Important concepts to prepare on, Box-model in CSS, Positions in CSS, Flexbox in CSS, Responsiveness (Media Query), CSS Selectors, Class & id, HTML DOM, Ways to apply CSS in HTML, JS most Important concepts to prepare on, Closures, HoistingCall, bind, applyScopeArray methods (map, filter, etc...)All ES6 Features, Promises, API (fetch), Form validation, Java most Important concepts to prepare on, Java oops concept
Tip
Tip

Tip 1 : Must have at least two good projects
Tip 2 : prepare only basic DSA problems.
Tip 3 : Oops concept should be very clear.

Application process
Where: Other
Eligibility: must have graduate(Btech, BE, BCA etc...)
Resume Tip
Resume tip

Tip 1 : Resume should be in a single page if you are fresher
Tip 2 : add details about your projects

Interview rounds

01
Round
Easy
Video Call
Duration45 minutes
Interview date4 Nov 2021
Coding problem2

The first interview round was based on technical questions. most of the questions were basic fundamentals of coding like oops concept etc. You must have knowledge about SDLC and Agile Methodology as well.

1. Check If The String Is A Palindrome

Easy
10m average time
90% success
0/40
Asked in companies
IntuitSprinklrCIS - Cyber Infrastructure

You are given a string 'S'. Your task is to check whether the string is palindrome or not. For checking palindrome, consider alphabets and numbers only and ignore the symbols and whitespaces.

Note :

String 'S' is NOT case sensitive.

Example :

Let S = “c1 O$d@eeD o1c”.
If we ignore the special characters, whitespaces and convert all uppercase letters to lowercase, we get S = “c1odeedo1c”, which is a palindrome. Hence, the given string is also a palindrome.
Problem approach

import java.io.*; // for handling input/output
import java.util.*; // contains Collections framework

// don't change the name of this class
// you can add inner classes if needed
class Main {
public static void main (String[] args) {
Scanner sc = new Scanner(System.in);
String str = sc.nextLine();
//ABCDCZA
int i = 0; //i = 0
int j = str.length()-1; //j = 6

while(i < j){
if(str.charAt(i) != str.charAt(j)){
System.out.println(0);
return;
}
i++;
j--;
}
System.out.println(1);

}
}

Try solving now

2. Minimum Operations

Easy
20m average time
82% success
0/40
Asked in companies
BNY MellonLinkedInThought Works

You are given an array 'ARR' of 'N' positive integers. You need to find the minimum number of operations needed to make all elements of the array equal. You can perform addition, multiplication, subtraction or division with any element on an array element.

Addition, Subtraction, Multiplication or Division on any element of the array will be considered as a single operation.

Example:

If the given array is [1,2,3] then the answer would be 2. One of the ways to make all the elements of the given array equal is by adding 1 to the array element with value 1 and subtracting 1 from the array element with value 3. So that final array would become [2,2,2]. 
Try solving now
02
Round
Easy
HR Round
Duration20 minutes
Interview date5 Nov 2021
Coding problem1

Asked basic questions about Role and salary structure. It was quite easy.

1. Basic HR Questions

Introduce yourself
What was your role in your projects

How do you keep yourself motivated?

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
Associate Software Engineer
3 rounds | 3 problems
Interviewed by Mphasis pvt limited
920 views
1 comments
0 upvotes
Associate Software Engineer
3 rounds | 3 problems
Interviewed by Mphasis pvt limited
1448 views
0 comments
0 upvotes
Associate Software Engineer
3 rounds | 2 problems
Interviewed by Mphasis pvt limited
1177 views
0 comments
0 upvotes
Associate Software Engineer
4 rounds | 3 problems
Interviewed by Mphasis pvt limited
2769 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Associate Software Engineer
3 rounds | 10 problems
Interviewed by Amdocs
2410 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 2 problems
Interviewed by Ernst & Young (EY)
2775 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 15 problems
Interviewed by Ernst & Young (EY)
2405 views
0 comments
0 upvotes