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

C Developer Interview Questions & Answers

user image Anonymous

posted on 3 Apr 2023

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

I applied via LinkedIn and was interviewed in Mar 2023. 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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. Object oriented programming in c++
  • Ans. 

    Object-oriented programming in C++ is a programming paradigm that uses objects to represent real-world entities.

    • Encapsulation, inheritance, and polymorphism are the three main pillars of OOP in C++.

    • Classes and objects are the building blocks of OOP in C++.

    • OOP in C++ allows for code reusability, modularity, and easier maintenance.

    • Example: A car can be represented as an object in C++ with properties like make, model, and...

  • Answered by AI
  • Q2. Operator overloading Restrict inheritance Const in copy constructor Minimum swap to make 3 string of equal size similar Late binding
  • Q3. Const pointer and pointer to const Join in Multithreading
  • Ans. 

    Const pointer and pointer to const in multithreading

    • A const pointer cannot change the memory address it points to, but can change the value at that address

    • A pointer to const can change the memory address it points to, but cannot change the value at that address

    • In multithreading, const pointers can be used to ensure thread safety by preventing multiple threads from modifying the same memory location

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Puzzle 4 tier and one spare tier
  • Q2. Why we use join in Multithreading
  • Ans. 

    Join is used to wait for a thread to finish execution before continuing with the main thread.

    • Join ensures that all the threads finish their execution before the main thread exits.

    • It is used to avoid race conditions and deadlocks.

    • Join can be used with detach to ensure that the thread is not left running in the background.

    • Example: Joining a thread that performs a time-consuming task before continuing with the main thread...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Siemens Healthineers C Developer interview:
  • C++
  • Oops
  • Multithreading
  • Dsa
  • Puzzle
Interview preparation tips for other job seekers - Be crisp and clear what you are telling. They will cross question from any point so be sure what u are telling to interviewer.

Skills evaluated in this interview

C Developer Interview Questions asked at other Companies

Q1. String Transformation Problem Given a string (STR) of length N, you are tasked to create a new string through the following method: Select the smallest character from the first K characters of STR, remove it from STR, and append it to the n... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

120 minutes of interview, 3 dsa questions alongwith 20 technical and apti MCQ's

Round 2 - Technical 

(4 Questions)

  • Q1. Oops and its implementation alongwith polymorphism code
  • Ans. 

    Oops is a concept in object-oriented programming that allows for code reusability and flexibility. Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Oops allows for encapsulation, inheritance, and polymorphism in programming.

    • Polymorphism allows for methods to be overridden in subclasses, providing flexibility in code.

    • Example: Oops can be implemented by creating classes for...

  • Answered by AI
  • Q2. Write matrix multiplication using multithreading
  • Ans. 

    Matrix multiplication using multithreading involves dividing the matrix into smaller parts and assigning each part to a separate thread for parallel computation.

    • Divide the matrices into smaller submatrices to be processed by different threads.

    • Assign each submatrix multiplication operation to a separate thread for parallel computation.

    • Combine the results from each thread to get the final result of the matrix multiplicat

  • Answered by AI
  • Q3. SDE puzzles from GFG
  • Q4. Projects and why you implemented this tech stack
Round 3 - HR 

(2 Questions)

  • Q1. Introduction and project related questions
  • Q2. Gen Ai related questions

Skills evaluated in this interview

Graduate Engineer Interview Questions asked at other Companies

Q1. What is Finite Element Analysis? Explain using examples.
View answer (1)
Siemens Healthineers Interview Questions and Answers for Freshers
illustration image
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Automate the use case Open Google.com, search for a country and find wikipedia page for each step add validations

Interview Preparation Tips

Topics to prepare for Siemens Healthineers Automation Test Engineer interview:
  • Selenium

Automation Test Engineer Interview Questions asked at other Companies

Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

General questions asked

Round 2 - Technical 

(2 Questions)

  • Q1. Coding questions asked
  • Q2. Brain teaser asked
Round 3 - Technical 

(2 Questions)

  • Q1. Data structures asked
  • Q2. Overall managerial questions
Round 4 - HR 

(2 Questions)

  • Q1. Why you want to work here
  • Q2. Cultural fit check

Technical Intern Interview Questions asked at other Companies

Q1. Coding question: Find the 2nd lowest and 2nd highest elements in an array
View answer (1)

Siemens Healthineers interview questions for popular designations

 Software Developer

 (10)

 Senior Software Engineer

 (7)

 Software Engineer

 (6)

 Senior Test Engineer

 (3)

 Test Professional

 (2)

 Design & Development Engineer

 (2)

 Senior Engineer

 (1)

 Graduate Engineer

 (1)

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

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basics of C++. Solve some problem by given complexity. Find the bugs in code.

Round 2 - Technical 

(2 Questions)

  • Q1. Question from your last project.
  • Q2. Design pattern in C++.
  • Ans. 

    Design patterns in C++ are reusable solutions to common problems in software design.

    • Design patterns help in creating flexible, maintainable, and scalable code.

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

    • Each design pattern has a specific purpose and can be applied in different scenarios.

  • Answered by AI

Skills evaluated in this interview

Top Siemens Healthineers Senior Software Engineer Interview Questions and Answers

Q1. 1. Design qestion. 2. Design pattern uses per use case.
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Get interview-ready with Top Siemens Healthineers Interview Questions

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Second largest in an array
  • Ans. 

    Find the second largest string in an array of strings.

    • Iterate through the array and keep track of the largest and second largest strings.

    • Compare each string with the current largest and second largest strings.

    • Return the second largest string at the end.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Angular coding round was conducted

Skills evaluated in this interview

Design & Development Engineer Interview Questions asked at other Companies

Q1. If the product is a failure how will you make up for it?
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me something about your projects
  • Ans. 

    I have worked on various projects including a mobile app for tracking fitness goals and a web application for managing inventory.

    • Developed a mobile app using React Native to track fitness goals and provide workout plans

    • Built a web application using Angular for managing inventory and tracking sales

    • Implemented RESTful APIs for communication between frontend and backend systems

  • Answered by AI
  • Q2. OS,DBMS questions

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic understanding on role and interest towards the role by the manager
  • Q2. Read through the list of work experience and products worked so far
Round 2 - Technical 

(2 Questions)

  • Q1. Indepth question on EU MDR, USFDA, 510k, other country regulations
  • Q2. List of experience related questions

Regulatory Affairs Manager Interview Questions asked at other Companies

Q1. DMF submission purpose what is the additional requirements
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Prepare well on arrays, lists and its operations
  • Q2. Get to know well about your current project

Top Siemens Healthineers Software Developer Interview Questions and Answers

Q1. Print sentence word in reverse order without using default function. eg: input:-> I live in New York. output:-> I evil ni weN kroY.
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How do you confirm the IT app is Zero Trust compliant?
  • Ans. 

    Confirming Zero Trust compliance involves verifying network segmentation, least privilege access, continuous monitoring, and strict authentication protocols.

    • Verify network segmentation to ensure that resources are isolated and access is restricted based on policies

    • Implement least privilege access controls to limit user permissions to only what is necessary for their role

    • Utilize continuous monitoring tools to detect and...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. What do you understand by ITSM?
  • Ans. 

    ITSM stands for Information Technology Service Management, which is a set of policies, processes, and procedures for managing IT services.

    • ITSM focuses on aligning IT services with the needs of the business

    • It involves implementing and managing IT services to meet agreed service levels

    • ITSM includes processes such as incident management, problem management, change management, and service level management

    • ITSM frameworks li...

  • Answered by AI

Senior Information Technology Operations Engineer Interview Questions asked at other Companies

Q1. How do you confirm the IT app is Zero Trust compliant?
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About previous projects
  • Q2. Basic technical questions

Top Siemens Healthineers Senior Software Engineer Interview Questions and Answers

Q1. 1. Design qestion. 2. Design pattern uses per use case.
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

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.

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

INTERVIEWS

AppInventiv Technologies

No Interviews

INTERVIEWS

AppInventiv Technologies

No Interviews

INTERVIEWS

AppInventiv Technologies

No Interviews

LIST OF COMPANIES

Discover companies

Find best workplace

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
 • 418 Interviews
Philips Interview Questions
3.9
 • 157 Interviews
Abbott Interview Questions
4.1
 • 146 Interviews
GE Healthcare Interview Questions
4.0
 • 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
463 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
221 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
149 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Design & Development Engineer
101 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Developer
84 salaries
unlock blur

₹0 L/yr - ₹0 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