Upload Button Icon Add office photos

Siemens Healthineers

Compare button icon Compare button icon Compare

Filter interviews by

Siemens Healthineers Interview Questions and Answers

Updated 9 Jul 2025
Popular Designations

47 Interview questions

A C Developer was asked
Q. Why do 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 t...

View all C Developer interview questions
A Software Developer was asked
Q. Implement a sorting algorithm.
Ans. 

Sorting algorithm arranges elements in a specific order.

  • Choose an appropriate sorting algorithm based on the data size and type.

  • Common sorting algorithms include bubble sort, insertion sort, merge sort, quicksort, and selection sort.

  • Implement the chosen algorithm in the programming language of choice.

  • Test the algorithm with various input sizes and types to ensure correctness and efficiency.

View all Software Developer interview questions
A Software Development Engineer was asked
Q. Given a string like 'Aaabbcc', find the count of consecutive occurrences of each character. For example, for the input 'Aaabbcc', the output should be a:3, b:2, c:2.
Ans. 

Count the occurrences of each character in a given string and display the results in a formatted manner.

  • Use a dictionary to store character counts.

  • Iterate through the string and update counts for each character.

  • Example: For 'Aaabbcc', the counts are: a-3, b-2, c-2.

  • Consider case sensitivity if required (e.g., 'A' vs 'a').

  • Output can be formatted as a string or printed directly.

View all Software Development Engineer interview questions
A Senior Software Developer was asked
Q. Write code similar to a HackerRank test.
Ans. 

Code similar to HackerRank test

  • Create an array of strings for test cases

  • Write code to evaluate each test case

  • Compare output with expected output

  • Return results

View all Senior Software Developer interview questions
A Senior Software Developer was asked
Q. Tell me about your experience with Scrum and Agile methodologies.
Ans. 

Scrum is an Agile framework for managing software development, emphasizing collaboration, flexibility, and iterative progress.

  • Scrum involves roles like Product Owner, Scrum Master, and Development Team, each with distinct responsibilities.

  • It uses time-boxed iterations called Sprints, typically lasting 2-4 weeks, to deliver incremental product improvements.

  • Daily Stand-ups are short meetings to discuss progress, obs...

View all Senior Software Developer interview questions
A Logistics Executive was asked
Q. How do you maintain all warehouse activities?
Ans. 

Maintaining warehouse activity requires proper organization and management.

  • Implement a warehouse management system to track inventory and orders

  • Train staff on proper handling and storage of goods

  • Regularly inspect and maintain equipment and facilities

  • Establish safety protocols and enforce them consistently

  • Monitor and analyze warehouse performance to identify areas for improvement

View all Logistics Executive interview questions
A Logistics Executive was asked
Q. How do you follow the 5S rules?
Ans. 

The 5S methodology enhances workplace organization and efficiency through five key principles.

  • Sort: Remove unnecessary items from the workspace. Example: Discard outdated tools.

  • Set in Order: Organize tools and materials for easy access. Example: Label storage areas.

  • Shine: Clean the workspace regularly to maintain standards. Example: Schedule weekly clean-ups.

  • Standardize: Establish procedures for maintaining organi...

View all Logistics Executive interview questions
Are these interview questions helpful?
A Software Developer Intern was asked
Q. Given a binary tree, determine if it is a valid binary search tree (BST).
Ans. 

Check if a binary tree is a binary search tree

  • Traverse the tree and check if each node satisfies the BST property

  • For each node, check if its left child is less than the node and right child is greater than the node

  • Use recursion to check all nodes in the tree

View all Software Developer Intern interview questions
A Software Developer Intern was asked
Q. Given an array, reverse the order of its elements.
Ans. 

Reverse an array of strings

  • Create a new array and iterate through the original array in reverse order, adding each element to the new array

  • Use the built-in reverse() method of the array object

  • Swap the first and last elements, then the second and second-to-last elements, and so on until the middle of the array is reached

View all Software Developer Intern interview questions
A Senior Software Engineer was asked
Q. Wpf C# concept and sone codes for binding
Ans. 

WPF C# is a framework for building desktop applications. Binding is a way to connect UI elements to data sources.

  • WPF stands for Windows Presentation Foundation

  • C# is the programming language used for WPF development

  • Binding allows for automatic updates of UI elements when data changes

  • Example code for binding:

  • DataContext is used to set the data source for binding

View all Senior Software Engineer interview questions

Siemens Healthineers Interview Experiences

66 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. OOPS concepts and Design Patterns
  • Q2. Linked list coding question and scenario based design implementation
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

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
  • Ans. 

    Automate a Google search for a country and validate the Wikipedia page results.

    • Open a browser and navigate to 'https://www.google.com'.

    • Input the country name in the search bar and submit the search.

    • Validate that the search results contain a link to the Wikipedia page for the country.

    • Click on the Wikipedia link and validate that the page title matches the country name.

    • Check for the presence of key sections like 'History...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Siemens Healthineers Automation Test Engineer interview:
  • Selenium
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
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

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

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Basics of C#
  • Q2. Data structures and algorithm ques
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
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 trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Siemens Healthineers?
Ask anonymously on communities.

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. Print sentence word in reverse order without using default function. eg: input:...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.

Overall Interview Experience Rating

4.3/5

based on 62 interview experiences

Difficulty level

Easy 15%
Moderate 82%
Hard 3%

Duration

Less than 2 weeks 58%
2-4 weeks 29%
4-6 weeks 8%
6-8 weeks 5%
View more

Interview Questions from Similar Companies

Advantmed Interview Questions
4.3
 • 152 Interviews
Dr Lal PathLabs Interview Questions
4.1
 • 149 Interviews
Johnson & Johnson Interview Questions
4.0
 • 103 Interviews
Pacific BPO Interview Questions
3.4
 • 91 Interviews
Paras Hospital Interview Questions
4.3
 • 89 Interviews
UnitedHealth Interview Questions
4.0
 • 84 Interviews
GE Healthcare Interview Questions
4.0
 • 77 Interviews
Clove Dental Interview Questions
3.9
 • 56 Interviews
Redcliffe Labs Interview Questions
4.0
 • 55 Interviews
View all

Siemens Healthineers Reviews and Ratings

based on 462 reviews

4.0/5

Rating in categories

3.5

Skill development

4.2

Work-life balance

3.6

Salary

4.2

Job security

4.0

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 462 Reviews and Ratings
Software Developer
480 salaries
unlock blur

₹10.7 L/yr - ₹19.4 L/yr

Senior Software Engineer
244 salaries
unlock blur

₹17 L/yr - ₹26.8 L/yr

Software Engineer
159 salaries
unlock blur

₹12.2 L/yr - ₹22.5 L/yr

Senior Engineer
126 salaries
unlock blur

₹16.4 L/yr - ₹27 L/yr

Design & Development Engineer
108 salaries
unlock blur

₹13 L/yr - ₹20.8 L/yr

Explore more salaries
Compare Siemens Healthineers with

UnitedHealth

4.0
Compare

Paras Hospital

4.3
Compare

Dr Lal PathLabs

4.1
Compare

Johnson & Johnson

4.0
Compare
write
Share an Interview