Upload Button Icon Add office photos

Filter interviews by

Siemens Healthineers C Developer Interview Questions, Process, and Tips

Updated 3 Apr 2023

Siemens Healthineers C Developer Interview Experiences

1 interview 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 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

Interview questions from similar companies

Software Developer Interview Questions & Answers

Optum user image Preeti Charishma

posted on 26 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Aptitude, core concepts and a code

Round 2 - HR 

(2 Questions)

  • Q1. What is the one thing you learnt from college club?
  • Ans. 

    I learned the importance of teamwork and collaboration from my college club.

    • Developed strong communication skills by working with diverse group of individuals

    • Learned how to delegate tasks effectively to achieve common goals

    • Gained experience in problem-solving and conflict resolution through group projects

  • Answered by AI
  • Q2. What is the one thing you want to expereince?
  • Ans. 

    I want to experience living in a different country and immersing myself in a new culture.

    • Traveling to a foreign country and learning about their customs and traditions

    • Trying new foods and experiencing different ways of life

    • Making friends with locals and exploring the local attractions

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Difference between relational and non relational dbms
  • Ans. 

    Relational DBMS stores data in tables with predefined relationships, while non-relational DBMS stores data in flexible, schema-less formats.

    • Relational DBMS uses structured query language (SQL) for querying data

    • Non-relational DBMS can store data in various formats like key-value pairs, document-based, graph databases

    • Relational DBMS ensures data integrity through normalization and constraints

    • Non-relational DBMS offers be...

  • Answered by AI
  • Q2. Difference betweeen class,abstract class,interface in python
  • Ans. 

    Class is a blueprint for creating objects, abstract class cannot be instantiated and can have abstract methods, interface is a contract for classes to implement certain methods.

    • Class is a blueprint for creating objects with attributes and methods.

    • Abstract class cannot be instantiated and can have abstract methods that must be implemented by subclasses.

    • Interface is a contract for classes to implement certain methods, bu

  • Answered by AI
  • Q3. Project related questions were asked

Skills evaluated in this interview

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

(1 Question)

  • Q1. Oops related insharitance encapsulation
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They asked easy to medium DSA . It includes arrays, strings, recursion.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was easy process
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Dsa and aptitude questions were asked

Round 2 - Technical 

(1 Question)

  • Q1. DSA,sql, oops and some resume related questions
Round 3 - HR 

(1 Question)

  • Q1. General interaction about me and my family

SQL Developer Interview Questions & Answers

Labcorp user image Pankaj Dhatrak

posted on 22 Feb 2024

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

I applied via Job Portal and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Query to get Highest 2nd salary in the table
  • Ans. 

    Use a subquery to find the second highest salary in the table.

    • Use a subquery to select all salaries that are less than the maximum salary in the table.

    • Then select the maximum salary from the results of the subquery to get the second highest salary.

  • Answered by AI
  • Q2. Update same column in 1 query
  • Ans. 

    Update same column in 1 query

    • Use the UPDATE statement with the SET clause to update the desired column

    • Reference the same column in the SET clause to update it with a new value

    • Ensure proper WHERE clause is used to specify which rows to update

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic interview quetions

Skills evaluated in this interview

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

(1 Question)

  • Q1. Self introduction
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. What is oops, what is abstraction
  • Ans. 

    OOPs stands for Object-Oriented Programming. Abstraction is the concept of hiding complex implementation details and showing only necessary features of an object.

    • OOPs is a programming paradigm that uses objects and classes to design and develop applications.

    • Abstraction is the process of hiding the implementation details and showing only the necessary features of an object.

    • For example, a car can be represented as an obj...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - jsdfjs jshfjsjdbf kjifnwnejs isdsjdjeogkr ijfjsofnksdng isjfsjogjsng joijsdglmksejoigj nijgibsjfduysdhdgj hoirgnkjdfbfoirjbkbrfb knuiwhfhbeufhiwuegee
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Anna University and was interviewed in Aug 2022. 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 tips
Round 2 - Coding Test 

Two Easy questions to be solved

Round 3 - Technical 

(3 Questions)

  • Q1. Some Technical based questions
  • Q2. It was amazing . Interviewer asked me to code for heap sort and asked me to explain.
  • Q3. Write a code for heap sort algorithm and explain it?
  • Ans. 

    Heap sort is a comparison-based sorting algorithm that uses a binary heap data structure.

    • Heap sort works by building a binary heap from the array and then repeatedly extracting the maximum element and placing it at the end of the array.

    • The heap is maintained as a complete binary tree, where each parent node is greater than or equal to its children.

    • The time complexity of heap sort is O(n log n) and it is an in-place sor...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for GE Healthcare Software Developer interview:
  • C++
  • C
  • Python
Interview preparation tips for other job seekers - Learn very well and expertise in one coding language. To be have a clear vision on theory concepts like OS, DBMS, OOPS, CN...etc.

Skills evaluated in this interview

I applied via AmbitionBox and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Apne phlw khi job ki hai
  • Q2. Fresher hai ya experience
  • Q3. Itni Jagah interview Diya Hai
  • Q4. Aap Yahan job karna chahte hain

Interview Preparation Tips

Interview preparation tips for other job seekers - Mujhe is company mein job karni hai Kyunki Mujhe yah company acchi lagi

Siemens Healthineers Interview FAQs

How many rounds are there in Siemens Healthineers C Developer interview?
Siemens Healthineers interview process usually has 3 rounds. The most common rounds in the Siemens Healthineers interview process are Technical and Resume Shortlist.
What are the top questions asked in Siemens Healthineers C Developer interview?

Some of the top questions asked at the Siemens Healthineers C Developer 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

Tell us how to improve this page.

People are getting interviews through

based on 1 Siemens Healthineers interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 418 Interviews
Optum Interview Questions
4.0
 • 408 Interviews
Philips Interview Questions
3.9
 • 153 Interviews
Abbott Interview Questions
4.2
 • 141 Interviews
Dr Lal PathLabs Interview Questions
4.2
 • 122 Interviews
Max Healthcare Interview Questions
4.1
 • 118 Interviews
UnitedHealth Interview Questions
4.1
 • 82 Interviews
Paras Hospital Interview Questions
4.5
 • 76 Interviews
GE Healthcare Interview Questions
4.1
 • 71 Interviews
View all
Software Developer
450 salaries
unlock blur

₹7 L/yr - ₹25 L/yr

Senior Software Engineer
212 salaries
unlock blur

₹9.6 L/yr - ₹30 L/yr

Software Engineer
138 salaries
unlock blur

₹7.5 L/yr - ₹28.5 L/yr

Design & Development Engineer
100 salaries
unlock blur

₹8 L/yr - ₹20 L/yr

Senior Engineer
91 salaries
unlock blur

₹13.4 L/yr - ₹25 L/yr

Explore more salaries
Compare Siemens Healthineers with

GE Healthcare

4.1
Compare

Philips

3.9
Compare

Siemens

4.1
Compare

Fresenius Medical Care

3.7
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