Upload Button Icon Add office photos

Filter interviews by

Metro Group of Hospitals Intern Interview Questions and Answers

Updated 25 Jun 2022

Metro Group of Hospitals Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 25 Jun 2022

I applied via Naukri.com and was interviewed in Dec 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - HR 

(2 Questions)

  • Q1. Why are you choosing this company?
  • Q2. Where are you from? And what are your unique skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on practical knowledge. Ask questions whenever in doubt.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Behavioral 

(1 Question)

  • Q1. Tell me a time when you failed
Round 2 - Technical 

(1 Question)

  • Q1. Walk me through three financial statements
  • Ans. 

    The three financial statements are the income statement, balance sheet, and cash flow statement.

    • Income statement shows a company's revenues and expenses over a specific period of time.

    • Balance sheet provides a snapshot of a company's financial position at a specific point in time.

    • Cash flow statement shows how changes in balance sheet and income affect cash and cash equivalents.

  • Answered by AI

Intern Interview Questions & Answers

Optum user image Anonymous

posted on 8 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Two questions and aptitude questions

Round 2 - Coding Test 

Two data structures and algorithms questions

Round 3 - HR 

(1 Question)

  • Q1. Location preference
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Binary tree traversal question

Round 2 - Technical 

(2 Questions)

  • Q1. Linklist simple question
  • Q2. Add node at nth position
  • Ans. 

    To add a node at the nth position in a linked list

    • Create a new node with the data to be inserted

    • Traverse the linked list to the (n-1)th node

    • Adjust the pointers to insert the new node at the nth position

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed before Sep 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Do your best to crack
  • Q2. What are your qualifications

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your skills

I applied via Campus Placement and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself
  • Q2. Reverse an array
  • Ans. 

    Reverse an array of strings

    • Create a new array and iterate through the original array in reverse order, adding each element to the new array

    • Use the built-in reverse() method of the array object

    • Swap the first and last elements, then the second and second-to-last elements, and so on until the middle of the array is reached

  • Answered by AI
  • Q3. Check if a given binary tree is binary search tree or not
  • Ans. 

    Check if a binary tree is a binary search tree

    • Traverse the tree and check if each node satisfies the BST property

    • For each node, check if its left child is less than the node and right child is greater than the node

    • Use recursion to check all nodes in the tree

  • Answered by AI
  • Q4. Questions about projects present in the resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview took for about an hour. Interviewer was very friendly

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

There were 30 MCQ questions and 2 coding problems. The MCQs were medium-level questions. Coding problems were fairly easy.

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    1.) Maintained a 'prev' pointer and 'temp' pointer.
    2.) Iterated the list and saved the next pointer of the current node as temp and assigned current->next = prev and then, prev = current, this is the general approach for reversing the list.
    3.) Returned prev

  • Answered Anonymously
Round 2 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

The interview was scheduled by the placement cell in the evening. The interviewer seemed to be an experienced developer.
He asked me general background questions like what are you interested most in? what are your technical interests? etc.
He then asked me about my project. Explained him well on that front and he seemed satisfied. He asked me to find the Lowest Common Ancestor of a given Binary Search Tree. I solved it in around 20-30 minutes and he finally asked me to write the solution on paper. He asked some practical OOPs problems for a while and I answered correctly but the explanations could be more thorough.

  • Q1. 

    LCA of Binary Tree Problem Statement

    You are given a binary tree consisting of distinct integers and two nodes, X and Y. Your task is to find and return the Lowest Common Ancestor (LCA) of these two nodes...

  • Ans. 

    This problem was alien to me at that time. But, I was familiar with BST. Solved the problems using 'parent' pointers first.
    Then, came up with the following recursive idea.

    function signature: LCA(Node* root , int n1, int n2)

    1.) If the current root is NULL, return NULL.
    2.) If root->val> n1 && root->val > n2:
    return LCA(root->left , n1 , n2)
    3.) If root->val < n1 && root->val < n2
    r...

  • Answered Anonymously
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

The interview was some 30 minutes after the technical round. The HR asked me general questions like my hobbies, technical and non-technical things in my resume, my interests, etc. The overall communication was very friendly.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from National Institute of Technology, Raipur. I applied for the job as SDE - Intern in HyderabadEligibility criteriaAbove 7.5 GPAUnitedHealth Group interview preparation:Topics to prepare for the interview - Operating Systems, Data Structures, Algorithms, Project, Math puzzlesTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Be very informative of your project and brush it up before the interview process
Tip 2 : In the Aptitude round, aptitude questions were relatively harder but coding problems are very easy

Application resume tips for other job seekers

Tip 1 : Describe your project(s) well and put GitHub link
Tip 2 : They also asked non-technical topics that were in my resume

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Jun 2016.

Interview Questionnaire 

3 Questions

  • Q1. 1. Why do you want to join Boston Scientific?
  • Q2. 2. Why finance, in particular?
  • Ans. 

    I am interested in finance because it combines my passion for numbers and analysis with my desire to understand the inner workings of businesses and the economy.

    • I have always been fascinated by the world of finance and how it impacts our daily lives.

    • I enjoy working with numbers and analyzing data, which are essential skills in finance.

    • Finance offers a unique opportunity to understand the inner workings of businesses an...

  • Answered by AI
  • Q3. 3. What do you want to gain at the end of the internship?

Interview Preparation Tips

Round: Resume Shortlist
Experience: My resume got shortlisted for a profile in Finance.

College Name: Lady Shri Ram College

I applied via Approached by company and was interviewed before Jan 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Your future goals and ambitions,
  • Q2. Five year goals, Strengths, weakness, why apollo,

Interview Preparation Tips

Interview preparation tips for other job seekers - Be versed with the Resume forwarded, dont bluff as HR is not a fool. Be well dressed

Intern Interview Questions & Answers

Optum user image Anonymous

posted on 23 Feb 2022

I applied via Company Website and was interviewed in Aug 2021. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don’t be afraid to ask questions

Metro Group of Hospitals Interview FAQs

How many rounds are there in Metro Group of Hospitals Intern interview?
Metro Group of Hospitals interview process usually has 2 rounds. The most common rounds in the Metro Group of Hospitals interview process are Resume Shortlist and HR.

Tell us how to improve this page.

Intern Interview Questions from Similar Companies

Optum Intern Interview Questions
4.0
 • 2 Interviews
View all
Staff Nurse
128 salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Pharmacist
37 salaries
unlock blur

₹1.6 L/yr - ₹4 L/yr

Nursing Staff
29 salaries
unlock blur

₹1.2 L/yr - ₹4.2 L/yr

Billing Executive
25 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

OT Technician
24 salaries
unlock blur

₹1.8 L/yr - ₹3.6 L/yr

Explore more salaries
Compare Metro Group of Hospitals with

Apollo Hospitals

4.1
Compare

Fortis Healthcare

4.0
Compare

Max Healthcare

4.1
Compare

Columbia Asia

4.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview