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

Filter interviews by

Baxter International Senior Engineer Interview Questions and Answers

Updated 28 Apr 2024

Baxter International Senior Engineer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Previous Experience
  • Q2. Design Knowledge
  • Q3. Personally Based
Round 2 - One-on-one 

(3 Questions)

  • Q1. Domain Knowledge Formal Testing
  • Q2. Lab Management Quality Assurance Design Assurance
  • Q3. Dv, TMV R&D Testing Mechanical
Round 3 - HR 

(1 Question)

  • Q1. Salary Negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Showcase exemplery Doman Knowledge.
Real time experience be Straight Forward.
Prepare for the exact JD Provided. For experienced Candidates no special Preparation is required as they hire you for Skill and Problem solving Attitude no need to potray that you have all the skills in world be Genuine .

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I was interviewed in Sep 2023.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Reverse a String using Array
  • Ans. 

    Reverse a string using array of characters

    • Create an array of characters from the input string

    • Use two pointers to swap characters at opposite ends of the array until they meet

    • Join the characters in the array to form the reversed string

  • Answered by AI
  • Q2. Microservices vs Monilith
  • Ans. 

    Microservices allow for modular, independent services while monolith is a single, cohesive unit.

    • Microservices promote scalability and flexibility

    • Monoliths are easier to develop and deploy initially

    • Microservices can lead to more complex infrastructure and communication between services

    • Monoliths can become difficult to maintain and scale as they grow

    • Examples: Netflix uses microservices for their streaming platform, while...

  • Answered by AI
  • Q3. SQL query to get 3 max salary by group
  • Ans. 

    SQL query to get 3 max salary by group

    • Use the RANK() function to rank the salaries within each group

    • Filter the results to only include rows where the rank is less than or equal to 3

    • Order the results by group and salary in descending order

  • Answered by AI
  • Q4. CI CD process followed in last project
  • Ans. 

    Implemented CI/CD process using Jenkins for automated builds, tests, and deployments.

    • Utilized Jenkins for continuous integration and continuous deployment

    • Automated build process triggered by code commits to version control

    • Implemented automated testing to ensure code quality

    • Deployed code to different environments based on predefined pipelines

  • Answered by AI
  • Q5. Major changes in Spring boot 3
  • Ans. 

    Major changes in Spring Boot 3 include support for Java 17, improved performance, and enhanced security features.

    • Support for Java 17

    • Improved performance optimizations

    • Enhanced security features such as OAuth 2.1 support

    • Updated dependencies and libraries

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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. Explain end to end automation cycle
  • Ans. 

    End to end automation cycle involves automating the entire software development process from planning to deployment.

    • The cycle starts with requirements gathering and planning

    • Next, the code is developed and tested using automation tools

    • Continuous integration and delivery are used to deploy the code to production

    • Monitoring and feedback are used to improve the process

    • Examples of automation tools include Jenkins, Selenium,

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to join this company.

Skills evaluated in this interview

I applied via Referral and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How to avoid accidents
  • Ans. 

    Accidents can be avoided by implementing safety measures and promoting awareness.

    • Conduct regular safety training sessions for employees

    • Ensure proper maintenance of equipment and machinery

    • Implement safety protocols and procedures

    • Provide personal protective equipment (PPE) to employees

    • Promote a safety culture within the organization

    • Encourage reporting of near-misses and incidents for analysis and improvement

    • Regularly rev

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi it went on smooth the day the faced the interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Apr 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic C# and oops questions , mostly on inheritance , abstraction ,encapsulation , properties
  • Q2. Coding questions related to strings finding longest substring without repeating characters , find the count of vowels in string with using dictionary kr hash ( used ascii value approach)
Round 2 - Technical 

(2 Questions)

  • Q1. Mostly on project .
  • Q2. Was asked about design patterns , had to create a design for a simple . How would I structure all the folders classes , interfaces logics etc .
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Case Study 

Mold design, Parting line selection of injection molding component, Checking of draft angle for injection molding, Solidworks, Solidworks Configuration, GD&T, Windchill

Interview Preparation Tips

Topics to prepare for Boston Scientific Design Engineer interview:
  • Plastic Molding
  • gdnt
  • Windchill
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Programming language related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jan 2023. There were 3 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 

(2 Questions)

  • Q1. Java 8, 11 features with practical questions and coding.
  • Q2. Springboot, spring security, spring cloud, actuators
Round 3 - Technical 

(3 Questions)

  • Q1. Data structures and algorithms
  • Q2. Java 8, 11 features with coding assignment
  • Ans. 

    Java 8 and 11 introduced several new features and improvements to the language.

    • Java 8 introduced lambda expressions, functional interfaces, streams, and default methods.

    • Java 11 introduced local variable syntax for lambda parameters, HTTP client API, and new string methods.

    • Example of Java 8 lambda expression: (x, y) -> x + y

    • Example of Java 11 HTTP client API: HttpClient client = HttpClient.newHttpClient();

  • Answered by AI
  • Q3. Springboot related questions and coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and give your best. Some coding questions will be asked.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How do you deploy a Web API using Docker Container?
  • Ans. 

    Deploying a Web API using Docker Container involves creating a Dockerfile, building the image, and running the container.

    • Create a Dockerfile with instructions on how to build the image, including dependencies and environment variables.

    • Build the Docker image using the Docker build command.

    • Run the Docker container using the Docker run command, specifying ports and any other necessary configurations.

    • Ensure the Web API is ...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tech Basic Quesions and Related to stack mostly on .net Sql and Angular

Baxter International Interview FAQs

How many rounds are there in Baxter International Senior Engineer interview?
Baxter International interview process usually has 3 rounds. The most common rounds in the Baxter International interview process are Technical, One-on-one Round and HR.
How to prepare for Baxter International Senior Engineer 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 Medical Devices, DFM, Design Development, Healthcare and Java.
What are the top questions asked in Baxter International Senior Engineer interview?

Some of the top questions asked at the Baxter International Senior Engineer interview -

  1. Lab Management Quality Assurance Design Assura...read more
  2. Domain Knowledge Formal Test...read more
  3. Dv, TMV R&D Testing Mechani...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Optum Interview Questions
4.0
 • 414 Interviews
Apollo Hospitals Interview Questions
4.1
 • 328 Interviews
R1 RCM Interview Questions
3.9
 • 267 Interviews
Abbott Interview Questions
4.2
 • 142 Interviews
Max Healthcare Interview Questions
4.1
 • 130 Interviews
Dr Lal PathLabs Interview Questions
4.2
 • 123 Interviews
Fortis Healthcare Interview Questions
4.1
 • 122 Interviews
UnitedHealth Interview Questions
4.1
 • 82 Interviews
View all
Baxter International Senior Engineer Salary
based on 79 salaries
₹10.4 L/yr - ₹33 L/yr
179% more than the average Senior Engineer Salary in India
View more details

Baxter International Senior Engineer Reviews and Ratings

based on 6 reviews

3.5/5

Rating in categories

3.6

Skill development

3.7

Work-Life balance

3.6

Salary & Benefits

3.9

Job Security

3.6

Company culture

3.0

Promotions/Appraisal

3.3

Work Satisfaction

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