Mphasis Interview Questions & Mphasis Interview process for Freshers

Mphasis Interview Questions & Mphasis Interview process for Freshers

Mphasis interview questions and interview experiences for freshers are given below. These Mphasis interview questions were asked in recent on-campus and off-campus (via Amcat) drives.


Mphasis Interview Questions & Mphasis Interview process for Freshers

Mphasis Interview Questions and Answers

Mphasis Interview experience

  • Vishaka
  • Kalinga University
  • 2017 pass out
  • Got placed in Mphasis


Round 1 – Online Test on Amcat

I applied for Mphasis off campus drive via Amcat. This was the first time I heard about Amcat exam. Mphasis Amcat online test had 4 sections – Aptitude, Verbal, Logical and Programming MCQs.

Aptitude, verbal and logical were very easy. I prepared a lot assuming they will be very hard, but I felt it was comparatively easier. Mphasis programming MCQ questions were a little trickier. You need to carefully go through the questions and answer them. I thought I won’t receive the call letter for next round. But fortunately, I got the call letter after 1 week.


Mphasis Interview Questions & Mphasis Interview process for Freshers

Round 2 – Technical Interview + HR Interview


Both the interviews happened at the same time. First technical questions were asked and then HR questions were asked. Technical interview questions were based on my resume. They asked me about each and every project I had mentioned. For one of the projects, I was asked to write the logic code. Since I was completely prepared I was able to answer it. Never include any of the projects which you have no complete knowledge about. You will be screwed up.


Mphasis recruiters focused a lot on technical. You need to be thorough with the basic concepts. I was also asked questions on C, C++, Java, DS, OS, and Networks. Some of the questions are



Round 3 – Versant Communication Test


This is the final round and it basically tests your pronunciation, fluency of language, grammar and vocabulary. In this round, you need to interact in a telephone and a computerized voice will instruct you to repeat or read in English. This round doesn’t require any preparation as such.


You can also check:


mphasis interview questions and answers


Other Mphasis Interview Questions


1) C code to perform in-order traversal on a binary tree.

void in-order(struct treenode *tree)

{

if(tree != NULL)

{

in-order(tree→ left);

printf(“%d”,tree→ root);

in-order(tree→ right);

}

}



Mphasis Interview Questions & Mphasis Interview process for Freshers

2)In an AVL tree, at what condition the balancing is to be done?

If the pivotal value (or the Height factor) is greater than 1 or less than -1.


3)What is a deadlock?

You can check the answer here.


4) What is data structure?

Data structure refers to the way data is organized and manipulated. It seeks to find ways to make data access more efficient. Here, not only the focus is on one piece of data but the different set of data and how they can relate to one another in an organized manner.


5) Differentiate NULL and VOID

Null is a value, whereas Void is a data type identifier. A variable that is given a Null value indicates an empty value. The void is used to identify pointers as having no initial size.


6) Whether Linked List is linear or Non-linear data structure?

According to Access strategies, Linkedlist is a linear one.According to Storage Linked List is a Non-linear one.




7) What are the advantages of Linked List over an array?

  • The size of a linked list can be incremented at runtime which is impossible in the case of the array.
  • The List is not required to be contiguously present in the main memory, if the contiguous space is not available, the nodes can be stored anywhere in the memory connected through the links.
  • The List is dynamically stored in the main memory and grows as per the program demand while the array is statically stored in the main memory, size of which must be declared at compile time.
  • The number of elements in the linked list is limited to the available memory space while the number of elements in the array is limited to the size of an array.



Mphasis Interview Questions & Mphasis Interview process for Freshers

8) Write the syntax in C to create a node in the singly linked list.

struct node  

{  

   int data;  

  struct node *next;  

};  

struct node *head, *ptr;  

ptr = (struct node *)malloc(sizeof(struct node));  



Mphasis Interview Questions & Mphasis Interview process for Freshers

c