Upload Button Icon Add office photos

Siemens Healthineers

Compare button icon Compare button icon Compare

Filter interviews by

Siemens Healthineers Interview Questions, Process, and Tips

Updated 13 Feb 2025

Top Siemens Healthineers Interview Questions and Answers

View all 42 questions

Siemens Healthineers Interview Experiences

Popular Designations

62 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via campus placement at National Institute of Technology (NIT), Tiruchirappalli

Round 1 - Coding Test 

They asked dsa questions of easy and medium difficulty

Round 2 - One-on-one 

(1 Question)

  • Q1. All possible combinations of a suite of cards printed out
  • Ans. 

    Generate all possible combinations of a suite of cards

    • Create an array of all possible card values (e.g. '2', '3', '4', '5', '6', '7', '8', '9', '10', 'J', 'Q', 'K', 'A')

    • Create an array of all possible card suits (e.g. 'Hearts', 'Diamonds', 'Clubs', 'Spades')

    • Iterate through the card values and suits to generate all combinations (e.g. '2 of Hearts', '3 of Hearts', '4 of Hearts', ...)

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why the company
  • Q2. Who am I and questions about my upbringing

Skills evaluated in this interview

Dot Net Fullstack Developer Interview Questions asked at other Companies

Q1. What languages does support the .netframework???
View answer (3)
Interview experience
4
Good
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I was interviewed in Aug 2024.

Round 1 - Technical 

(1 Question)

  • Q1. What is R1 release milestones?
Round 2 - HR 

(1 Question)

  • Q1. Have you suggested anything to your developer regarding your defect?

Senior Test Engineer Interview Questions asked at other Companies

Q1. From Selenium -> Which Automation framework I have implemented in my project . Explain each framework components. How to handle dynamic web element. how to handle hidden element. how to upload file in selenium, where hashmap is used in s... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What do you know about siemens healthineers?
  • Q2. What are your 3 technical skills?
  • Q3. Are you willing to travel

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication skills very important

Site Installation Engineer Interview Questions asked at other Companies

Q1. What do you know about siemens healthineers?
Add answer
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Why do you want to work here?
  • Q2. Why do you want to work as a software engineer intern?

Interview Preparation Tips

Interview preparation tips for other job seekers - practice basic DSA questions (easy) and basic concepts in programming like object oriented programming, recursion, easy debugging questions.

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if two trees are MirrorYou are given two arbitrary binary trees consisting of N and M number of nodes respectively, your task is to check whether the two trees are mirror of each other or not. Two trees are said to be mirror of each o... read more
View answer (2)

Siemens Healthineers interview questions for popular designations

 Software Developer

 (10)

 Senior Software Engineer

 (7)

 Software Engineer

 (6)

 Senior Test Engineer

 (3)

 Design & Development Engineer

 (2)

 Test Professional

 (2)

 Automation Test Engineer

 (1)

 C Developer

 (1)

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

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

(1 Question)

  • Q1. SQL related questions on snowflake and databricks
Round 3 - Technical 

(1 Question)

  • Q1. Database architecture and design related questions
Round 4 - Behavioral 

(1 Question)

  • Q1. Databricks experience, domain knowledge and mostly experience related questions.
Round 5 - HR 

(1 Question)

  • Q1. Expectations and how you would be a good fit. All general HR questions that you can find

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your skills and sale yourself well.

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a GameYou and your friend Ninjax are playing a game of coins. Ninjax place the 'N' number of coins in a straight line. The rule of the game is as follows: 1. Each coin has a value associated with it. 2. It’s a two-playe... read more
View answer (6)

Get interview-ready with Top Siemens Healthineers Interview Questions

I Am Retired Now Interview Questions & Answers

user image Anonymous

posted on 29 May 2024

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

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Basic introduction
  • Q2. Introduction round
  • Q3. Previous experience
Round 2 - One-on-one 

(1 Question)

  • Q1. About our previous experience

Interview Preparation Tips

Interview preparation tips for other job seekers - possess a good knowledge
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Explain your project

Senior Test Engineer Interview Questions asked at other Companies

Q1. From Selenium -> Which Automation framework I have implemented in my project . Explain each framework components. How to handle dynamic web element. how to handle hidden element. how to upload file in selenium, where hashmap is used in s... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain the design patterns and SOLID principles in software engineering
  • Ans. 

    Design patterns are reusable solutions to common problems in software design, while SOLID principles are guidelines for writing maintainable and scalable code.

    • Design patterns help in organizing code, improving code reusability, and making code more maintainable.

    • Examples of design patterns include Singleton, Factory, Observer, and Strategy.

    • SOLID principles consist of Single Responsibility, Open/Closed, Liskov Substituti...

  • Answered by AI
  • Q2. How to create a top down approach unity application based on SOLID principles
  • Ans. 

    To create a top down Unity application based on SOLID principles, start by designing separate classes for each game element and ensuring single responsibility, open/closed, Liskov substitution, interface segregation, and dependency inversion principles are followed.

    • Design separate classes for player, enemies, obstacles, etc.

    • Ensure each class has a single responsibility.

    • Use interfaces to define common behaviors for diff...

  • Answered by AI

Skills evaluated in this interview

Unity Developer Interview Questions asked at other Companies

Q1. Would you prefer unity new input system or old one and why?
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Write Simple Programs in c#

Round 2 - Technical 

(1 Question)

  • Q1. Project Architecture
Round 3 - HR 

(1 Question)

  • Q1. What are your weaknesses
  • Ans. 

    One of my weaknesses is that I can be overly critical of my own work.

    • I tend to be a perfectionist and can spend too much time on a task to ensure it is flawless.

    • I sometimes struggle with delegating tasks because I want to make sure they are done correctly.

    • I am working on improving my ability to accept constructive criticism and not take it personally.

  • Answered by AI

Lead Engineer Interview Questions asked at other Companies

Q1. What is the resistance value of tripping & closing coil of vcb?
View answer (8)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Reverse of a string, collection questions

Round 2 - Technical 

(1 Question)

  • Q1. Framework design, xpaths to be written, test cases to be identified in the given scenario
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Test Professional Interview Questions asked at other Companies

Q1. Any application software,Power quality, Energy metering monitoring software works.
View answer (1)

Siemens Healthineers Interview FAQs

How many rounds are there in Siemens Healthineers interview?
Siemens Healthineers interview process usually has 2-3 rounds. The most common rounds in the Siemens Healthineers interview process are Technical, One-on-one Round and HR.
How to prepare for Siemens Healthineers 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 Siemens Healthineers. The most common topics and skills that interviewers at Siemens Healthineers expect are C#, Sales, Angularjs, Design Patterns and Dicom.
What are the top questions asked in Siemens Healthineers interview?

Some of the top questions asked at the Siemens Healthineers interview -

  1. Const pointer and pointer to const Join in Multithread...read more
  2. Why we use join in Multithread...read more
  3. Object oriented programming in ...read more
How long is the Siemens Healthineers interview process?

The duration of Siemens Healthineers interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Siemens Healthineers Interview Process

based on 58 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 430 Interviews
Philips Interview Questions
3.8
 • 157 Interviews
Abbott Interview Questions
4.1
 • 146 Interviews
GE Healthcare Interview Questions
4.1
 • 72 Interviews
Medtronic Interview Questions
4.0
 • 69 Interviews
View all

Siemens Healthineers Reviews and Ratings

based on 423 reviews

4.0/5

Rating in categories

3.6

Skill development

4.2

Work-life balance

3.6

Salary

4.3

Job security

4.1

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 423 Reviews and Ratings
Software Developer
469 salaries
unlock blur

₹7 L/yr - ₹25 L/yr

Senior Software Engineer
224 salaries
unlock blur

₹9.6 L/yr - ₹28 L/yr

Software Engineer
149 salaries
unlock blur

₹7.5 L/yr - ₹28.5 L/yr

Design & Development Engineer
101 salaries
unlock blur

₹8 L/yr - ₹20.3 L/yr

Senior Software Developer
84 salaries
unlock blur

₹9.5 L/yr - ₹25 L/yr

Explore more salaries
Compare Siemens Healthineers with

GE Healthcare

4.0
Compare

Philips

3.9
Compare

Siemens

4.1
Compare

Fresenius Medical Care

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