Upload Button Icon Add office photos

Siemens Healthineers

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Siemens Healthineers Software Developer Interview Questions, Process, and Tips

Updated 9 Dec 2024

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.
  • Q2. Programming question: Find 1st 2nd and 3rd highest from array of integer.
  • Q3. Data structure question find all leaf node from tree.
View all 8 questions

Siemens Healthineers Software Developer Interview Experiences

10 interviews found

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
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Input output pointers related
  • Q2. Polymorphism,casting class,
Round 2 - One-on-one 

(1 Question)

  • Q1. Data structure used for snake and ladder

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Sep 2023. There were 5 interview rounds.

Round 1 - Coding Test 

IT was basic question from string and array

Round 2 - One-on-one 

(2 Questions)

  • Q1. Data structure question find all leaf node from tree.
  • Ans. 

    Use depth-first search to traverse the tree and identify leaf nodes.

    • Implement depth-first search algorithm to traverse the tree.

    • Identify nodes with no children as leaf nodes.

    • Store leaf nodes in an array for retrieval.

  • Answered by AI
  • Q2. Print sentence word in reverse order without using default function. eg: input:-> I live in New York. output:-> I evil ni weN kroY.
  • Ans. 

    Reverse each word in a sentence without using default function.

    • Split the sentence into words

    • Iterate through each word and reverse it

    • Join the reversed words back into a sentence

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

(2 Questions)

  • Q1. Programming question :Fibonacci series using recursion.
  • Ans. 

    Fibonacci series using recursion is a classic programming problem where each number is the sum of the two preceding ones.

    • Define a recursive function that takes an integer n as input

    • Base case: if n is 0 or 1, return n

    • Recursive case: return the sum of the previous two Fibonacci numbers

    • Call the function recursively with n-1 and n-2 until base case is reached

  • Answered by AI
  • Q2. Programming question: Find 1st 2nd and 3rd highest from array of integer.
  • Ans. 

    Find 1st, 2nd, and 3rd highest integers from an array.

    • Sort the array in descending order.

    • Retrieve the first three elements from the sorted array.

    • Handle cases where array length is less than 3.

  • Answered by AI
Round 4 - Mangerial Round 

(1 Question)

  • Q1. They asked Puzzle
Round 5 - HR 

(1 Question)

  • Q1. Salary Discussion

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Question on Template concept in c++
  • Q2. Questions related to string

Siemens Healthineers interview questions for designations

 Software Developer Intern

 (1)

 Senior Software Developer

 (1)

 Software Engineer

 (6)

 C Developer

 (1)

 Unity Developer

 (1)

 Senior Software Engineer

 (7)

 Software Engineer Intern

 (1)

 Software Development Engineer

 (1)

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

I applied via Naukri.com and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

C++ related aptitude test. OOPs questions.

Round 2 - Coding Test 

Questions related to linked list. Virtual functions and virtual destructor.
Reversing a LinkedIn list.

Round 3 - Technical 

(3 Questions)

  • Q1. Project related interview.
  • Q2. Which stack used?
  • Ans. 

    We primarily use the MERN stack for our web development projects.

    • MERN stack includes MongoDB, Express.js, React, and Node.js

    • MongoDB is used as the database to store data

    • Express.js is used as the backend framework for building APIs

    • React is used for building the user interface

    • Node.js is used as the server-side runtime environment

  • Answered by AI
  • Q3. How threads were handled?
  • Ans. 

    Threads are handled by creating and managing lightweight processes within a program to improve performance and responsiveness.

    • Threads are managed by the operating system or a thread library.

    • Threads share the same memory space within a process.

    • Threads can communicate with each other through shared memory or message passing.

    • Thread synchronization is important to prevent race conditions and ensure data consistency.

    • Example...

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top Siemens Healthineers Interview Questions

Round 1 - Technical 

(1 Question)

  • Q1. Oops, c#, design , .net framework
Round 2 - One-on-one 

(1 Question)

  • Q1. Managerial, projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice oops , data structures and algorithms, problem solving
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 4 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 Resume tips
Round 2 - Coding Test 

It was an MCQ based test. Code Snippets as well as OOPS, OS, DBMS questions were there

Round 3 - One-on-one 

(1 Question)

  • Q1. How to implement a stack OS Questions Problem Solving Questions OOPS concepts DS questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Smart Pointers About the project done in college

I applied via Company Website and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Concepts of Oops. Ex: Encapsulation, Abstraction, Polymorphism with real time examples.
  • Q2. Multithreading concepts in Java
  • Ans. 

    Multithreading in Java allows multiple threads to execute concurrently within a single program.

    • Java provides built-in support for multithreading through the java.lang.Thread class.

    • Threads can be created by extending the Thread class or implementing the Runnable interface.

    • Synchronization is used to prevent race conditions and ensure thread safety.

    • Java also provides several classes and interfaces for managing thread exec...

  • Answered by AI
  • Q3. 2 Coding Questions were asked. first was easy and was medium type.
  • Q4. Questions related to my project in detail.

Interview Preparation Tips

Interview preparation tips for other job seekers - They had asked Questions according to my resume. So, be confident with the skills you mentioned. Be Confident and cool. The interviewers were very friendly.

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. C++ related basic questions
Round 2 - Behavioral 

(1 Question)

  • Q1. C++ and project related advanced questions
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't pretend like you know everything. Just tell your skills and work experience truely.

I applied via Approached by Company and was interviewed before Nov 2021. There were 4 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 - Coding Test 

Basic problem solving easy to medium level

Round 3 - One-on-one 

(1 Question)

  • Q1. Coding questions based on loops, arrays
Round 4 - One-on-one 

(1 Question)

  • Q1. Coding 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.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good with what is in resume, decent problem solving skills + some basic design patterns will help you clear the interview

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Siemens Healthineers Interview FAQs

How many rounds are there in Siemens Healthineers Software Developer interview?
Siemens Healthineers interview process usually has 2-3 rounds. The most common rounds in the Siemens Healthineers interview process are One-on-one Round, Technical and Coding Test.
What are the top questions asked in Siemens Healthineers Software Developer interview?

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

  1. Print sentence word in reverse order without using default function. eg: input:...read more
  2. Programming question: Find 1st 2nd and 3rd highest from array of integ...read more
  3. Data structure question find all leaf node from tr...read more

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

Siemens Healthineers

No Interviews

INTERVIEWS

Siemens Healthineers

No Interviews

INTERVIEWS

Synergy Marine Group

No Interviews

INTERVIEWS

AppInventiv Technologies

No Interviews

INTERVIEWS

Hindustan Shipyard

No Interviews

Tell us how to improve this page.

Siemens Healthineers Software Developer Interview Process

based on 6 interviews

3 Interview rounds

  • Technical Round
  • Coding Test Round
  • One-on-one Round
View more
Siemens Healthineers Software Developer Salary
based on 463 salaries
₹7.3 L/yr - ₹25 L/yr
97% more than the average Software Developer Salary in India
View more details

Siemens Healthineers Software Developer Reviews and Ratings

based on 53 reviews

4.1/5

Rating in categories

3.5

Skill development

4.3

Work-life balance

3.6

Salary

4.5

Job security

4.2

Company culture

3.5

Promotions

3.5

Work satisfaction

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