Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by Baxter International Team. If you also belong to the team, you can get access from here

Baxter International

Compare button icon Compare button icon Compare
4.0

based on 611 Reviews

Filter interviews by

Baxter International Analyst Interview Questions and Answers

Updated 7 Dec 2021

Interview questions from similar companies

Analyst Interview Questions & Answers

Optum user image Anonymous

posted on 20 Oct 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
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 - Aptitude Test 

On aptitude english math

Round 3 - Technical 

(1 Question)

  • Q1. What is hipaa? Abt medicare medicaid

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Related to excel VBA and MySQL

Interview Preparation Tips

Interview preparation tips for other job seekers - It was not much tough, there was 3 round and final with HR.
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Self introduction
  • Q2. Preferences in life about your studies
Round 2 - One-on-one 

(2 Questions)

  • Q1. Studies based from your overall whole randomly topic wise Qs
  • Q2. Base on your studies
Round 3 - Group Discussion 

Group discussion was amazing not to muuch difficult but based on anylitical or logical questions based
GD surrounds was lite not stressed.
Some hobbies question round

Must everyone to speak atleast on one question

Interview Preparation Tips

Interview preparation tips for other job seekers - Not frusted, focus on interview rounds , one on one round. Stay motivated
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
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was basic aptitude but it was online

Round 2 - Technical 

(1 Question)

  • Q1. Write python code for bizzbuss for prime or not prime\
  • Ans. 

    Python code for determining if a number is prime or not and applying bizzbuzz logic.

    • Write a function to check if a number is prime or not

    • Iterate through a range of numbers and apply bizzbuzz logic

    • Return 'prime' if the number is prime, 'bizz' if divisible by 3, 'buzz' if divisible by 5, and 'bizzbuzz' if divisible by both 3 and 5

  • 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 Company Website and was interviewed in Jan 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Majorly asked questions related to current experience
  • Q2. Questions about advance Excel and different analytical tools
  • Q3. About different functions of GE

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the Job description and do your homework correctly
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. General Questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions related to previous organisation work?
  • Q2. How did you manage previous work with any stress?

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
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

Baxter International Interview FAQs

How to prepare for Baxter International Analyst interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Baxter International. The most common topics and skills that interviewers at Baxter International expect are SQL, AR, Ap, Application Support and Bmc Remedy.

Tell us how to improve this page.

Analyst Interview Questions from Similar Companies

R1 RCM Analyst Interview Questions
3.9
 • 53 Interviews
View all
Baxter International Analyst Salary
based on 35 salaries
₹6.3 L/yr - ₹16 L/yr
80% more than the average Analyst Salary in India
View more details

Baxter International Analyst Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

3.6

Skill development

5.0

Work-Life balance

4.1

Salary & Benefits

5.0

Job Security

5.0

Company culture

3.0

Promotions/Appraisal

4.6

Work Satisfaction

Explore 2 Reviews and Ratings
Associate
88 salaries
unlock blur

₹4 L/yr - ₹11.2 L/yr

Senior Engineer
79 salaries
unlock blur

₹10.4 L/yr - ₹33 L/yr

Senior Executive
78 salaries
unlock blur

₹3.2 L/yr - ₹10 L/yr

Principal Engineer
56 salaries
unlock blur

₹18.2 L/yr - ₹42 L/yr

Senior Associate
46 salaries
unlock blur

₹4.8 L/yr - ₹15.3 L/yr

Explore more salaries
Compare Baxter International with

Johnson & Johnson

4.1
Compare

Medtronic

4.1
Compare

Abbott

4.2
Compare

Boston Scientific

4.0
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