Mphasis Interview Experience

Mphasis Interview Experience 2023

Find the latest Mphasis 2023 Interview Experience of selected students along with interview questions and answers, interview preparation courses, and many more.

Page highlights:

  • About Mphasis
  • Mphasis Interview Experience
  • Mphasis Interview Questions with Answers
  • Mphasis Interview preparation courses
  • Mphasis FAQs
Mphasis Interview Experience

About Mphasis

Mphasis is an Indian Multinational Information Technology service-based firm established in 1998. Mphasis is headquartered in Bengaluru, Karnataka. To know more about the company, visit them on: www.mphasis.com

Recruitment Process

Mphasis recruits through the following processes:-

  • Off-Campus drives
  • On-Campus drives
  • Employee referrals

Rounds:

  • Written assessment
  • TR Round
  • HR Round

Mphasis On-Campus Interview Experience

Mphasis visited our campus first time for their hiring drives. I immediately, and after a few days, I got an email that my resume was shortlisted for an online assessment round also called a written assessment round. It has 3 rounds namely,

  1. Online assessment
  2. Technical interview
  3. HR interview

Round 1: Online assessment

The online test had 4 sections with 100 questions and a duration of 120minutes. The platform used was AMCAT.

1. Quantitative Aptitude

No. of questions and Duration: 25 questions and 35 minutes

  • Speed, Time, and distance
  • Simple and compound interest
  • Divisibility
  • Ration and proportion
  • Probability

2. Verbal ability

No. of questions and Duration: 25 questions and 25 minutes

  • Error detection
  • Synonyms and antonyms
  • Jumbled sentences
  • Speech and voice
  • Sentence formation 

3. Logical Reasoning

No. of questions and Duration: 25 questions and 35 minutes

  • Coding and number pattern detection
  • Objective reasoning
  • Mathematical orders
  • Blood relation
  • Seating arrangement

4. Computer Programming

No. of questions and Duration: 25 questions and 25minutes

  • Hash table
  • Data types
  • Encapsulation
  • Searching and sorting

Read MphasiS Previous Year Placement Papers with Solutions on prepinsta.com/mphasis

Round 2: Technical Round

Duration: 25minutes

1. Tell me about yourself.

2. What is your favorite programming language?

3. What is Python?

4. Define a constructor.

A constructor is a method used to initialize the state of an object, and it gets invoked at the time of object creation.

Rules for constructor are:

  • The constructor name should be the same as the class name.
  • A constructor must have no return type.

5. What is Encapsulation?

Encapsulation is a feature of an entity that holds all secret data. The members of that class can only see the hidden details. Public, Protected, and Private are the different levels.       

6. What is Abstraction?

Abstraction refers to revealing only the most important information while concealing the details. Data abstraction refers to exposing only the most important aspects of the data to the outside world while concealing the implementation information. In OOPs, class helps us in achieving abstraction.

7. Tell me about the technologies you have used in your projects.

8. What is the advantage of the heap over a stack?

The heap is more flexible than the stack. That’s because memory space for the heap can be dynamically allocated and de-allocated as needed. However, the memory of the heap can at times be slower when compared to that stack.

Also, one coding question was asked. 

9. Write the code to find the Fibonacci series up to the nth term in C language.

#include<stdio.h>

int main()

{

int n = 10;

int a = 0, b = 1;

// printing the 0th and 1st term

printf("%d, %d",a,b);

int nextTerm;

// printing the rest of the terms here

for(int i = 2; i < n; i++){

nextTerm = a + b;

a = b;

b = nextTerm;

printf("%d, ",nextTerm);

}

return 0;

}						

After clearing this round, I was invited for the last and the final round.

Round 3: HR Round

Duration: 15 minutes

  1. Tell me about yourself that isn’t mentioned in the resume.
  2. Why Mphasis?
  3. Why should we hire you?
  4. Are there any backlogs or year gaps?
  5. Are you ready to relocate?
  6. Any questions?

Thank you.

To read other companies’ interview experiences, visit Interview Dashboard: https://prepinsta.com/interview-experience/       

Mphasis Interview Preparation Course

Check out our Mphasis Data Interview Preparation Course on Prime, which includes:-

  • Mphasis Technical Interview Questions and Answers
  • Mphasis HR Interview Questions and Answers
  • Mphasis Certification Questions
  • Written Mphasis Interview Experience
  • and more.

FAQ on Mphasis Interview Experience

Question: Are interviews at Mphasis easy?

Answer:-

It depends from person to person. A candidate with the right preparation can crack easily. It has both easy and difficult levels.

Question: How many rounds are there in the Mphasis recruitment process?

Answer:-

There are 3 rounds in the Mphasis interview process: Online-test, technical interview, and HR interview.

Question: Suggest the best platform for interview preparation.

Answer:-

Visit prepinsta.com/ and prepinstaprime.com for interview preparation.