Upload Button Icon Add office photos

Siemens Healthcare

Compare button icon Compare button icon Compare

Filter interviews by

Siemens Healthcare Product Owner Interview Questions and Answers

Updated 12 Sep 2024

Siemens Healthcare Product Owner Interview Experiences

1 interview found

Product Owner Interview Questions & Answers

user image Anonymous

posted on 12 Sep 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - HR 

(1 Question)

  • Q1. You can expect questions related to your current profile.
Round 2 - Technical 

(1 Question)

  • Q1. Basic Technical questions you can expect in this round.
Round 3 - Technical 

(1 Question)

  • Q1. Advance level technical questions by Architects.
Round 4 - Technical 

(1 Question)

  • Q1. Techno Managerial Questions you can expect here and you will get opportunity to interact with your future direct Manager in this call.
Round 5 - HR 

(1 Question)

  • Q1. Mostly discussion related to your interest and stability for long term commitment.
Round 6 - One-on-one 

(1 Question)

  • Q1. Formal one on one call with your hiring manager.

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to prepare in details related to the profile you have applied and always be specific what they are asking.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Sep 2018. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Asked about the technology which we mention in the resume.And in my first round interviewers asked me the questions in MVC and Sql server.
  • Q2. Life cycle of MVC, last project Architecture.Group by in SQL and entity framework

Interview Preparation Tips

General Tips: Architecture of the project. Confidence lebel and problem solving skills
Skills: Communication, Problem Solving, Analytical Skills
Duration: 1-4 weeks

I applied via Recruitment Consultant and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Normal Array functions, Oops concepts, mysql queries and some logical questions like pattern and sorting algorithms
  • Q2. Some Codeigniter related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare as usually do with any interview in php mysql domain
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is the use of button when link can submit the form?
  • Ans. 

    Buttons are used for actions within the form, while links are used for navigation.

    • Buttons can trigger JavaScript functions or perform form validation before submission

    • Buttons can have different styles and behaviors compared to links

    • Buttons are more accessible for users with disabilities

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How do you optimize a SQL procedure with 5000 lines in code?
  • Ans. 

    Optimize a SQL procedure with 5000 lines of code by identifying bottlenecks and implementing performance improvements.

    • Identify and analyze the most time-consuming parts of the procedure

    • Optimize queries by adding appropriate indexes, rewriting queries, or using query hints

    • Break down the procedure into smaller, more manageable parts

    • Use temporary tables or table variables to reduce the amount of data processed at once

    • Cons...

  • Answered by AI
  • Q2. Keep SQL procedures short, use multiple small procedure with specific functionality being used, avoid use of temp tables and Joins, use select statements wisely. do not use sub queries, do not use dynamic ...
  • Ans. 

    To optimize SQL procedures, keep them short, use small procedures with specific functionality, avoid temp tables and joins, use select statements wisely, avoid subqueries and dynamic SQL.

    • Break down complex procedures into smaller ones with specific functionality

    • Avoid using temporary tables and joins whenever possible

    • Use select statements wisely to retrieve only the necessary data

    • Avoid subqueries and find alternative ap...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - don't wear casual clothes in the interview. I was wearing photo-chromatic glasses which turned dark in sunlight, interviewer had objection to that as well. One girl/newly married lady wearing saree for interview was asked personal questions on the interview day, which I felt was unnecessary. She and I both got selected eventually but the interview process was horrible.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Feb 2021. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Some questions on array sorting and some are with array
  • Q2. Sql to find latest record in a table with and without subquery
  • Ans. 

    SQL query to find latest record in a table with and without subquery

    • Without subquery: SELECT * FROM table_name ORDER BY date_column DESC LIMIT 1

    • With subquery: SELECT * FROM table_name WHERE date_column = (SELECT MAX(date_column) FROM table_name)

  • Answered by AI
  • Q3. OOPS concepts
  • Q4. Written test question paper with 3 questions(Logical to make programs)

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with oops concept and SQL

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Explain different types of HL7 messages
  • Q2. Difference between 1C 2C 3C attribute types in DICOM
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 - One-on-one 

(1 Question)

  • Q1. Past work experience explanation, skill set and technical requirements
Round 3 - Coding Test 

Skill test and technical knowledge evaluation

Round 4 - HR 

(1 Question)

  • Q1. Tell me about yourself, preferred work location and expected salary.

Interview Preparation Tips

Interview preparation tips for other job seekers - Maintain patience and ask them your questions . Have regular follow ups
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Jul 2022.

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 

They ask you open Hacker Earth site and choose some random programs and ask you to complete it.

Round 3 - Technical 

(6 Questions)

  • Q1. What is multi threading
  • Ans. 

    Multi threading is the ability of a program to perform multiple tasks concurrently.

    • It allows for better utilization of CPU resources

    • It can improve program performance and responsiveness

    • Examples include web servers handling multiple requests simultaneously and video games rendering graphics while processing user input

  • Answered by AI
  • Q2. What is extend keyword
  • Ans. 

    The extend keyword is used to add properties and methods to an existing object.

    • Used in JavaScript to add properties and methods to an object

    • Can be used to inherit properties and methods from a parent object

    • Syntax: Object.assign(target, ...sources)

    • Example: const obj1 = {a: 1}; const obj2 = {b: 2}; const obj3 = {...obj1, ...obj2};

  • Answered by AI
  • Q3. Explain override. Why we need virtual?
  • Ans. 

    Override is used to provide a new implementation of a method in a subclass. Virtual is needed to allow the method to be overridden.

    • Override is used to change the behavior of a method in a subclass

    • Virtual is used to allow the method to be overridden in a subclass

    • Without virtual, a subclass cannot override a method from its parent class

    • Override is used to implement polymorphism in object-oriented programming

  • Answered by AI
  • Q4. Write a program to sort the array and remove duplicates.
  • Ans. 

    Program to sort and remove duplicates from an array.

    • Use built-in sort() method to sort the array in ascending order.

    • Loop through the sorted array and remove duplicates using filter() method.

    • Return the sorted and duplicate-free array.

  • Answered by AI
  • Q5. What is Is Relationship and As Relationship in oops?
  • Ans. 

    Is Relationship and As Relationship are two types of relationships in object-oriented programming.

    • Is Relationship is a type of relationship where one class is a subset of another class.

    • As Relationship is a type of relationship where one class is a type of another class.

    • Is Relationship is denoted by a solid line with a closed arrowhead pointing towards the superclass.

    • As Relationship is denoted by a dotted line with an o...

  • Answered by AI
  • Q6. What are architectural, structural, behavioural design patterns? Why we need them?
  • Ans. 

    Architectural, structural, and behavioral design patterns are reusable solutions to common software design problems.

    • Architectural patterns define the overall structure of a software system

    • Structural patterns describe how objects and classes can be combined to form larger structures

    • Behavioral patterns focus on communication between objects and how they operate together

    • Design patterns help to improve software quality, ma...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with basic programming and algorithms.

Skills evaluated in this interview

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

I appeared for an interview in May 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. You are perfect fit and you are hires
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-

I applied via Job Portal and was interviewed before May 2023. There was 1 interview round.

Round 1 - Coding Test 

1 hour, problem solving using data structures and algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice coding simple problems related data structures array, list, set, map.

Siemens Healthcare Interview FAQs

How many rounds are there in Siemens Healthcare Product Owner interview?
Siemens Healthcare interview process usually has 6 rounds. The most common rounds in the Siemens Healthcare interview process are Technical, HR and One-on-one Round.
How to prepare for Siemens Healthcare Product Owner 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 Healthcare. The most common topics and skills that interviewers at Siemens Healthcare expect are Healthcare, Scrum, Agile, Dicom and Project Management.
What are the top questions asked in Siemens Healthcare Product Owner interview?

Some of the top questions asked at the Siemens Healthcare Product Owner interview -

  1. Techno Managerial Questions you can expect here and you will get opportunity to...read more
  2. Basic Technical questions you can expect in this rou...read more
  3. Advance level technical questions by Architec...read more

Tell us how to improve this page.

Siemens Healthcare Product Owner Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

UnitedHealth Interview Questions
4.0
 • 82 Interviews
Paras Hospital Interview Questions
4.4
 • 81 Interviews
Pacific BPO Interview Questions
3.5
 • 79 Interviews
GE Healthcare Interview Questions
4.0
 • 72 Interviews
Advantmed Interview Questions
3.6
 • 51 Interviews
Redcliffe Labs Interview Questions
4.0
 • 48 Interviews
Healthians Interview Questions
3.5
 • 46 Interviews
View all
Siemens Healthcare Product Owner Salary
based on 9 salaries
₹19.3 L/yr - ₹32.5 L/yr
25% more than the average Product Owner Salary in India
View more details

Siemens Healthcare Product Owner Reviews and Ratings

based on 3 reviews

5.0/5

Rating in categories

3.9

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

4.8

Company culture

3.1

Promotions

3.8

Work satisfaction

Explore 3 Reviews and Ratings
Software Developer
224 salaries
unlock blur

₹6 L/yr - ₹24.6 L/yr

Senior Software Engineer
155 salaries
unlock blur

₹9.1 L/yr - ₹27.4 L/yr

Senior Systems Engineer
106 salaries
unlock blur

₹8 L/yr - ₹22.2 L/yr

Software Engineer
74 salaries
unlock blur

₹7 L/yr - ₹23 L/yr

Senior Software Developer
50 salaries
unlock blur

₹8.9 L/yr - ₹27 L/yr

Explore more salaries
Compare Siemens Healthcare with

Advantmed

3.6
Compare

2050 Healthcare

3.3
Compare

Pacific BPO

3.5
Compare

Hindustan Latex Family Planning Promotion Trust

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