Upload Button Icon Add office photos

Filter interviews by

Ankura Hospital Business Analyst Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

They start with sequel then slide you move to python

Round 2 - Aptitude Test 

Start with aptitude test and asking to detail regarding the study case

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Power bi test which ask you to make a dashboard

Round 2 - Group Discussion 

Basic communication round

Interview Preparation Tips

Topics to prepare for GeBBS Healthcare Solutions Business Analyst interview:
  • powerbi
  • SQL
  • Excel
  • basic knowledge of python
Interview preparation tips for other job seekers - gebbs give best opportunity as a fresher

I was interviewed in Jan 2017.

Interview Questionnaire 

9 Questions

  • Q1. • Programming, Quick Maths, Guesstimates, Puzzles.
  • Q2. • programs : Bubble Sorting, prime number etc programs, reverse number, print hello without using main function.
  • Q3. • Output and error checking of sql queries.
  • Ans. 

    Output and error checking of SQL queries involves verifying the correctness of query results and handling any potential errors.

    • Verify the correctness of query results by comparing them with expected output

    • Check for syntax errors and correct them before executing the query

    • Handle runtime errors by using try-catch blocks or error handling mechanisms

    • Validate input parameters to prevent SQL injection attacks

    • Use appropriate ...

  • Answered by AI
  • Q4. • Estimate the % of smokers in institute
  • Ans. 

    Estimating the percentage of smokers in an institute.

    • Collect data on the number of smokers and the total population in the institute.

    • Calculate the ratio of smokers to the total population.

    • Multiply the ratio by 100 to get the percentage of smokers.

    • Consider conducting surveys or analyzing existing data to gather information.

    • Take into account any potential biases or limitations in the data collection process.

  • Answered by AI
  • Q5. • Puzzles: Horse race, egg to be dropped from which floor so that it will not break. 3 lit jug, 8 lit jug case. Many more puzzles.
  • Q6. In depth questions in programming were asked.
  • Q7. Questions related to project in software profile
  • Q8. Programs in languages you know, queries of mysql
  • Q9. About yourself. Vision of company Why UHG Strengths, weaknesses About projects, why mining and now into analytics Why don't you have projects in analytics related topics.

Interview Preparation Tips

Round: Test
Experience: 30 questions in 45 minutes. Questions were time taking and few from previous year CAT papers. Average cut-off was around 12-13 only. There was negative marking.
Tips: Manage your time. Speed and Accuracy are important. Practice daily for at least 1 hour and cover all models in various topics. CAT level exam.
Duration: 45 minutes
Total Questions: 30

Round: Group Discussion
Experience: There were 12 in a panel, 6 were selected finally. they want a team player. Have discussed the benefits and problems associated with the topic and its long term effects on Indian Economy.
Tips: Improve your communication skills, body language is also important. Quantity is not important, quality is important. Keep your content to the point. Do not drag it unnecessarily
Duration: 10 minutes

Round: Technical Interview
Experience: This was technical interview 1; shortlisted candidates had to go through another interview. Puzzles and guesstimates were also asked along with some programming related questions.
Tips:

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is a data table
  • Ans. 

    A data table is a collection of rows and columns used to organize and display data in a structured format.

    • Data tables are commonly used in databases and spreadsheets to store and manipulate data.

    • Each row in a data table represents a record or entry, while each column represents a specific attribute or field.

    • Data tables can be sorted, filtered, and analyzed to extract meaningful insights from the data.

    • Examples of data t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare dax

I was interviewed before Apr 2021.

Round 1 - Face to Face 

(5 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was technical interview round. Questions based on programming and puzzles were asked.

  • Q1. Find prime numbers between given interval

    You are given a positive integer 'N'. Your task is to return all the prime numbers less than or equal to the 'N'.

    Note:

    1) A prime number is a n...
  • Ans. 

    The naïve approach for this question is to run a loop from the start to the end number. And for each number, check if it is prime or not. If the number is prime, we print it otherwise skip it.

    One optimization to this approach would be to skip all even numbers (except 2 if present in interval) since even numbers are not prime.

    Function to check if a number is prime or not :

    isPrime(n):
    	if (n <= 1) 
    		return false
    	...
  • Answered by CodingNinjas
  • Q2. Reverse a number

    Ninja is feeling very bored and wants to try something new. So, he decides to find the reverse of a given number. But he cannot do it on his own and needs your help.

    Note:

    If a number h...
  • Ans. 

    Algorithm : 
    Input: num
    (1) Initialize rev_num = 0
    (2) Loop while num > 0
    (a) Multiply rev_num by 10 and add remainder of num 
    divide by 10 to rev_num
    rev_num = rev_num*10 + num%10;
    (b) Divide num by 10
    (3) Return rev_num

  • Answered by CodingNinjas
  • Q3. Bubble sort

    Bubble Sort is one of the sorting algorithms that works by repeatedly swapping the adjacent elements of the array if they are not in sorted order.

    You are given an unsorted array consisting o...

  • Ans. 

    Bubble Sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements if they are in wrong order.

    Pseudocode:
    bubbleSort(arr[], n) 
    { 
    	for (i = 0 to i < n-1) do :
    	// Last i elements are already in place 
    		for (j = 0 to j < n-i-1) do : 
    			if (arr[j] is greater than arr[j+1]) 
    				swap(arr[j], arr[j+1])
    }
  • Answered by CodingNinjas
  • Q4. Puzzle

    There are 25 horses among which you need to find out the fastest 3 horses. You can conduct race among at most 5 to find out their relative speed. At no point you can find out the actual speed of the ...

  • Ans. 

    Make group of 5 horses and run 5 races. Suppose five groups are a,b,c,d,e and next alphabet is its individual rank in this group(of 5 horses).for eg. d3 means horse in group d and has rank 3rd in his group. [ 5 RACES DONE ] 
    a1 b1 c1 d1 e1 
    a2 b2 c2 d2 e2 
    a3 b3 c3 d3 e3 
    a4 b4 c4 d4 e4 
    a5 b5 c5 d5 e5 

    Now make a race of (a1,b1,c1,d1,e1).[RACE 6 DONE] suppose result is a1>b1>c1>d1>e...

  • Answered by CodingNinjas
  • Q5. Puzzle

    Suppose you have a 3 liter jug and a 5 liter jug (this could also be in gallons). The jugs have no measurement lines on them either. How could you measure exactly 4 liter using only those jugs and as...

  • Ans. 

    1. Fill 3 liter jug from tap.
    2. Empty it into 5 liter jug. 
    3. Again fill 3 liter jug from tap 
    4. Pour 2 liter (after that 5 liter jug will be full) from 3 liter jug into 5 liter leaving 1 liter in 3 liter jug.
    5. Pour away the water of 5 liter jug.
    6. Empty 1 liter water from 3 liter jug into 5 liter jug.
    7 Fill 3 liter jug from tap and empty it into 5 liter jug .
    8. 5 liter jug has 4 liters of water

  • Answered by CodingNinjas
Round 2 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

  • Q1. Basic HR Questions

    1. About yourself.
    2. Vision of company
    3. Why UHG ?
    4. Discussion on my Strengths, weaknesses
    5. Questions about projects.
    6. Why don't you have projects in analytics related topics?

  • Ans. 

    Tip 1 : Be sure to do your homework on the organization and its culture before the interview.


    Tip 2 : Employers want to understand how you use your time and energy to stay productive and efficient. Be sure to emphasize that you adhere to deadlines and take them seriously.
     

    Tip 3 : Talk about a relevant incident that made you keen on the profession you are pursuing and follow up by discussing your education.

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAUnitedHealth Group interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, SQL, Database, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2022. There were 3 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 

(1 Question)

  • Q1. Question related to experience and skills
Round 3 - One-on-one 

(1 Question)

  • Q1. Healthcare experience related to the medical coding?

Interview Preparation Tips

Topics to prepare for GeBBS Healthcare Solutions Business Analyst interview:
  • US Healthcare
  • Use Cases
  • Agile Methodology
  • Scrum
  • Requirement Gathering
Interview preparation tips for other job seekers - Be confident and keep learning

Interview Questionnaire 

11 Questions

  • Q1. Vodafone wants to launch 4G services in India. You are asked to send emails and messages to only the most eligible consumers to advertise about this service. You have every detail of your customers.Whom wi...
  • Ans. 

    Eligible customers for Vodafone's 4G service launch in India.

    • Customers with 4G compatible devices

    • Customers with high data usage

    • Customers in areas with good network coverage

    • Customers who have shown interest in technology and gadgets

    • Customers who have previously used Vodafone's high-speed data services

    • Customers who have opted-in to receive promotional messages

  • Answered by AI
  • Q2. Tell me about yourself, Strengths and Weakness
  • Q3. Why UHG; Analytics?
  • Q4. Can you work for extra hours and weekends?
  • Q5. Are you ok with working in Noida?
  • Q6. There are 100 people. 1st person has a sword. He kills 2nd person and gives the sword to 3rd person. He kills 4th and gives the sword to 5th person.99th person kill 100th person and gives the sword to 1st ...
  • Q7. There are 8 balls out of which only one ball is heavier. You have a weighing balance. In how many attempts (Min and Max) can u find the heavier ball?
  • Ans. 

    Find the heavier ball out of 8 using a weighing balance in minimum and maximum attempts.

    • Divide the balls into 3 groups of 3, 3, and 2.

    • Weigh the first two groups against each other.

    • If they balance, the heavier ball is in the third group.

    • If one group is heavier, weigh two balls from that group against each other.

    • If they balance, the heavier ball is the remaining one.

    • If one ball is heavier, that is the answer.

    • In the worst...

  • Answered by AI
  • Q8. There are 11 balls out of which only one ball is heavier. You have a weighing balance. In how many attempts (Min) can u find the heavier ball?
  • Ans. 

    In 3 attempts, the heavier ball can be found using the weighing balance.

    • Divide the balls into 3 groups of 3, 3, and 5 balls.

    • Weigh the first two groups against each other.

    • If they balance, the heavier ball is in the third group. Weigh two balls from the third group against each other to find the heavier one.

    • If they don't balance, the heavier ball is in the heavier group. Take two balls from the heavier group and weigh th

  • Answered by AI
  • Q9. There are 'n' balls out of which only one ball is heavier. You have a weighing balance. Come up with a formula to find the heavier ball
  • Ans. 

    Use a binary search approach to find the heavier ball among 'n' balls using a weighing balance.

    • Divide the 'n' balls into two equal groups and weigh them on the balance.

    • If one group is heavier, repeat the process with that group.

    • If both groups weigh the same, the heavier ball is among the remaining unweighed balls.

    • Continue dividing and weighing until the heavier ball is found.

  • Answered by AI
  • Q10. How many soft drinks can be sold on a particular day in J&K?
  • Ans. 

    The number of soft drinks sold in J&K on a particular day depends on various factors such as population, demand, availability, and marketing strategies.

    • The population of J&K can be a factor in determining the potential number of soft drink sales.

    • The demand for soft drinks can vary based on factors such as weather, events, and cultural preferences.

    • The availability of soft drinks in J&K, including distribution channels a...

  • Answered by AI
  • Q11. Estimate the market size of 4K and 8K display screens
  • Ans. 

    Estimating the market size of 4K and 8K display screens.

    • Analyze sales data and market research reports

    • Consider the adoption rate of 4K and 8K technology

    • Evaluate the market demand from various industries (entertainment, gaming, advertising, etc.)

    • Assess the pricing and availability of 4K and 8K displays

    • Factor in the growth potential and competition in the market

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Difficult to complete all the questions in time. Level of questions is moderate.
Tips: Practice aptitude as much as possible. Speed and time matter a lot.
Duration: 30 minutes
Total Questions: 30

Round: Puzzle Interview
Experience: Knew answer for the first question but forgot the logic behind. Said the same to the interviewer. To ask the 4th question, 2nd and 3rd questions were asked. Easy to solve 2nd and 3rd. Was checked for my approach to getting the formula.
Tips: Practice a lot of interview questions. Most of the companies ask similar and popular questions only. Google for those

Round: Guesstimate Interview
Experience: Got carried away a couple of times. But the interviewer helped me through the questions.
Tips: Ask plenty of questions. Use latest statistics as much as possible. Give proper reasoning for the figures you utter while solving the question.

Round: Case Study Interview
Experience: Initially made a couple of mistakes while approaching the problem. But corrected them with inputs from the interviewer.
Tips: Listen to the interviewer.

Round: HR Interview
Experience: It was cool.

General Tips: Whatever you utter, say with confidence
Skills: LOGICAL THINKING ABILITIES, Logical And Structured Thinking
College Name: BITS Pilani
Motivation: It provides a right platform for a person who wants to do analytical work in medical context.
Funny Moments: Guys who stay in Pilani can stay anywhere

Business Analyst Interview Questions & Answers

UnitedHealth user image Chandra Prakash Rathi

posted on 4 Feb 2017

I was interviewed before Feb 2016.

Interview Questionnaire 

6 Questions

  • Q1. Truth tribe, false tribe question
  • Q2. Guesstimate : India's Deodrant market
  • Ans. 

    The Indian deodorant market is a growing industry with a large consumer base and increasing demand for premium and natural products.

    • The deodorant market in India has been experiencing steady growth over the years.

    • The market is driven by factors such as increasing disposable income, urbanization, and changing lifestyles.

    • There is a growing awareness among consumers about personal hygiene and grooming, leading to higher d...

  • Answered by AI
  • Q3. Cheryl's birthday
  • Q4. Guesstimate : Number if tractors sold in haryana in a year.
  • Ans. 

    Approximately 50,000 tractors are sold in Haryana every year.

    • Consider the population of Haryana and the number of farmers in the state.

    • Look at the agricultural output of Haryana and the demand for tractors in the region.

    • Take into account the number of tractor dealerships in Haryana and their sales figures.

    • Research the sales figures of major tractor manufacturers in Haryana.

    • Assume a growth rate based on the previous yea...

  • Answered by AI
  • Q5. Family Background
  • Q6. Future Plans

Interview Preparation Tips

Round: Test
Experience: The Test was fairly simple, basic knowledge of quant would do. I could attempt 16 questions, and from what I am guessing was second highest scorer. You need to attempt atleast 10 questions correctly and it would do the job.
Tips: Speed matters in this test.
Duration: 30 minutes
Total Questions: 30

Round: Group Discussion
Experience: there was only one panelist, and a group of 12 students. We were each given individual time to conclude. The discussion was good, and lots of points were discussed.
Tips: More than language, the content mattered.
Duration: 15 minutes

Round: Technical Interview
Experience: Was basically asked questions from what was written in the resume. I had written about a website i created and was asked in detail about that. There a=were a few puzzles then.
Tips: Be true to your resume. Know what you have written

Round: Technical Interview
Experience: This was a tougher round. But the interviewers helped. They were interactive on how to solve. Which steps I was going through and were more focused on the approach
Tips: Be interactive, and think out loud

College Name: NIT Raipur

I was interviewed in Sep 2016.

Interview Preparation Tips

Round: Test
Experience: level of questions was similar to CAT
Tips: prepare for cat. since questions are tough, cutoff is around 50?
Duration: 20 minutes
Total Questions: 30

Round: Group Discussion
Duration: 10 minutes

Round: Stress Interview
Experience: Panel interview. C and algorithms

Skills: Analytics And Coding

I was interviewed in Jan 2017.

Interview Questionnaire 

8 Questions

  • Q1. Tell me about your family, What is good in Chhattisgarh, Where can I visit in Raipur and Bhilai, what do you not like about Raipur, every co-curricular activity from resume was interrogated. ETC
  • Q2. There are 100 people standing in a circle, the first person has a gun he starts shooting the person next to him and hands over the gun to the 3rd person and so on. Who will be the last person surviving?
  • Q3. There are 20 blue balls and 13 red balls in a container. I pick up randomly 2 balls from the container if the colour of the balls is same then I replace them with a blue ball and if otherwise then I replac...
  • Ans. 

    The last ball will be red.

    • If the first two balls are of different colors, they will be replaced with a red ball.

    • If the first two balls are of the same color, they will be replaced with a blue ball.

    • The number of balls in the container does not affect the outcome.

    • The last ball will be red because there are more red balls than blue balls in the container.

  • Answered by AI
  • Q4. How many facebook users are there in the world?
  • Ans. 

    The exact number of Facebook users worldwide is constantly changing, but as of October 2021, there are over 2.8 billion monthly active users.

    • As of October 2021, Facebook reported having over 2.8 billion monthly active users.

    • The number of Facebook users is constantly changing as new users join and others deactivate or delete their accounts.

    • Facebook's user base is spread across different countries and demographics.

    • The nu...

  • Answered by AI
  • Q5. Few questions to check mental calculation ability like 12% of 360, 11% of 56.
  • Q6. Cheryl’s birthday puzzle.
  • Q7. Two eggs hundred floors problem.
  • Q8. What is ‘vlookup’ in excel? Difference between vlookup and hlookup.
  • Ans. 

    VLOOKUP is a function in Excel used to search for a value in the first column of a range and return a corresponding value from another column.

    • VLOOKUP stands for vertical lookup.

    • It is commonly used to find specific data in large datasets.

    • The function takes four arguments: lookup value, table array, column index number, and range lookup.

    • VLOOKUP is case-insensitive and requires an exact match or an approximate match.

    • The f...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Pen and paper test was conducted. Level of questions was good. Only accuracy mattered as I was able to solve 12-13 questions. Out of 220 candidates, 45 cleared the round.
Tips: Don't guess the answers as negative marking is there and cut off does not go high.
Duration: 30 minutes
Total Questions: 30

Round: Group Discussion
Experience: 3-4 students were creating fish market but I didn

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

Optum Interview Questions
4.0
 • 411 Interviews
Apollo Hospitals Interview Questions
4.1
 • 324 Interviews
R1 RCM Interview Questions
3.9
 • 265 Interviews
Dr Lal PathLabs Interview Questions
4.2
 • 123 Interviews
Fortis Healthcare Interview Questions
4.1
 • 122 Interviews
Max Healthcare Interview Questions
4.1
 • 118 Interviews
UnitedHealth Interview Questions
4.1
 • 82 Interviews
View all
Staff Nurse
52 salaries
unlock blur

₹1.3 L/yr - ₹5.5 L/yr

Pharmacist
27 salaries
unlock blur

₹1.7 L/yr - ₹3.9 L/yr

Front Office Executive
17 salaries
unlock blur

₹2 L/yr - ₹3.2 L/yr

Assistant Manager
13 salaries
unlock blur

₹3.6 L/yr - ₹6.6 L/yr

Nursing Staff
12 salaries
unlock blur

₹1.8 L/yr - ₹5 L/yr

Explore more salaries
Compare Ankura Hospital with

Apollo Hospitals

4.1
Compare

Fortis Healthcare

4.1
Compare

Manipal Hospitals

4.2
Compare

Columbia Asia

4.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview