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

Associate Software Engineer

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

Interview preparation journey

expand-icon
Preparation
Duration: 3 Months
Topics: Topics JAVA (OOPS , All basics programing and Program Logic)C (All basic Interview Questions of C )PYTHON (All basic Interview Questions of Python and program logic )
Tip
Tip

Tip 1 : Never skip the conceptual part of JAVA , C 
Tip 2 : All have good programing logic in any one programing Language (JAVA , C OR PYTHON)
Tip 3 : Have good knowledge in DBMS , SQL

Application process
Where: Other
Eligibility: 6.5 in B-Tech , No Active backlog
Resume Tip
Resume tip

Tip 1 : Always Make 1 page resume not more than one page.
Tip 2 : Put project description properly and add link of the project .

Interview rounds

01
Round
Medium
Online Coding Interview
Duration90 minutes
Interview date20 Nov 2021
Coding problem1

First round consisting of English questions , Reasoning , coding MCQ'S and Coding questions Coding round of 20 mins

1. Find Smallest Integer

Moderate
10m average time
90% success
0/80
Asked in companies
SamsungUberMakeMyTrip

You are given an array 'ARR' consisting of 'N' positive numbers and sorted in non-decreasing order, and your task is to find the smallest positive integer value that cannot be represented as a sum of elements of any proper subset of the given array.

An array 'B' is a subset of another array 'A' if each element of 'B' is present in 'A'.

For example:
For the given input array [1, 1, 3],
1 can be represented as the sum of elements of the subset [1],
2 can be represented as the sum of elements of a subset [1, 1],
3 can be represented as the sum of elements of a subset [3],
4 can be represented as the sum of elements of a subset [1, 3],
5 can be represented as the sum of elements of a subset [1, 1, 3]
So, the smallest positive integer value that cannot be represented as a sum of elements of any subset of a given array is 6.
Problem approach

import java.util.*;
public class tuf {

public static void main(String args[]) {

int arr1[] = {2,5,1,3,0};
System.out.println("The smallest element in array is: " + sort(arr1));

int arr2[] = {8,10,5,7,9};
System.out.println("The smallest element in array is: " + sort(arr2));
}
static int sort(int arr[]) {
Arrays.sort(arr);
return arr[0];
}
}

Try solving now
02
Round
Medium
Group Discussion
Duration30 minutes
Interview date28 Nov 2021
Coding problem1

Here 10 members were in a Microsoft Teams call along with the Interviewer. We are given a topic we are given around 20 minutes time to talk about the topic. And after all the people completed, the interviewer asked to give a conclusion for the topic.

1. Junk food should be banned or not

  1. What are your views on the increasing demand of junk food?
  2. Whether they should be banned or not?
Problem approach

Tip 1 : Be fluent
Tip 2 : Be confident while speaking
Tip 3 : Just give your opinion do not much consider for being practically right.

03
Round
Medium
Online Coding Test
Duration30 minutes
Interview date1 Dec 2021
Coding problem1

1. Sum of Digits

Easy
15m average time
85% success
0/40
Asked in companies
ArcesiumUberSamsung

Ninja is given an integer ‘N’. One day Ninja decides to do the sum of all digits and replace the ‘N’ with the sum of digits until it becomes less than 10. Ninja wants to find what will be the value of ‘N’ after applying this operation.

Help Ninja in finding out this value.

Problem approach

Tip 1 : Learn java all basic concepts 
Tip 2 : learn DBMS AND SQL as well as OS
Tip 3 : Learn C properly and basic conceptual questions

Try solving now

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
921 views
1 comments
0 upvotes
Associate Software Engineer
3 rounds | 3 problems
Interviewed by Mphasis pvt limited
1449 views
0 comments
0 upvotes
Associate Software Engineer
3 rounds | 2 problems
Interviewed by Mphasis pvt limited
1178 views
0 comments
0 upvotes
Associate Software Engineer
4 rounds | 3 problems
Interviewed by Mphasis pvt limited
2770 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)
2776 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