Upload Button Icon Add office photos

Siemens Healthineers

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Siemens Healthineers Senior Test Engineer Interview Questions and Answers

Updated 13 Feb 2025

Siemens Healthineers Senior Test Engineer Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I was interviewed in Aug 2024.

Round 1 - Technical 

(1 Question)

  • Q1. What is R1 release milestones?
  • Ans. 

    R1 release milestones are key events or goals that need to be achieved before the initial release of a product or software.

    • R1 release milestones typically include completing all planned features, passing all necessary tests, and fixing any critical bugs.

    • Examples of R1 release milestones may include code freeze, completion of user acceptance testing, and finalizing documentation.

    • These milestones help ensure that the pro...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Have you suggested anything to your developer regarding your defect?
  • Ans. 

    Yes, I have suggested improvements to developers to prevent similar defects in the future.

    • Suggested adding more comprehensive unit tests to catch similar issues early on

    • Recommended implementing code reviews to catch potential defects before they reach testing phase

    • Proposed using static code analysis tools to identify potential defects in the codebase

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Explain your project

Senior Test Engineer Interview Questions Asked at Other Companies

asked in Sapiens
Q1. From Selenium -> Which Automation framework I have implemented ... read more
asked in LTIMindtree
Q2. What should be done when a defect is found in production?
asked in LTIMindtree
Q3. How do you performed incrimental load in your project?
asked in LTIMindtree
Q4. What is meant by regression and retesting?
asked in CGI Group
Q5. What is the difference between CHAR and VARCHAR2 data types in SQ ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Sep 2023. There were 2 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 

(2 Questions)

  • Q1. Program to print 0 to left
  • Ans. 

    Program to print 0 to left

    • Create a loop to iterate from 0 to the desired number

    • Use string manipulation to print the numbers with spaces to the left

    • Example: If the desired number is 5, print '0 1 2 3 4 5'

  • Answered by AI
  • Q2. Program to click on element using selenium
  • Ans. 

    To click on an element using Selenium, locate the element and use the click() method.

    • Locate the element using findElement() method

    • Use the click() method to click on the element

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via Approached by Company and was interviewed in Aug 2017. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Basic Java questions. Coding based on technical topics in Java. Approach and knowledge of other technology apart from core strength like ui ,design .
  • Q2. Scenario based questions. Deeper into Java and related technologies
  • Q3. Again based on Java and project but kind of client interview
  • Q4. Basic hr questions and salary discussion

Interview Preparation Tips

Round: Managerial
Experience: More of past projects and team handling

General Tips: Be prepared for basics in related technology and good through understanding in one core area.
Skills: Communication, Problem Solving, Analytical Skills, Decision Making Skills
Duration: 1-3 Months

I was interviewed in Aug 2016.

Interview Questionnaire 

2 Questions

  • Q1. Questions related to my project, questions on binary tree, questions from OS (like paging and scheduling). Interviewer also asked about competitive coding
  • Q2. Formal questions regarding my background, family members etc

Interview Preparation Tips

Round: Test
Duration: 1 hour

Skills: General Coding And Problem Solving, Puzzle Solving Capability
College Name: NIT Jamshedpur

I applied via Naukri.com and was interviewed in Jul 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Here they have work basically based on windows. So better to have c# and windows related stuff. Like win32, mfc, .net, c# . Here in my case I did not have experience in windows to ki made them clear about ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Two technical rounds were there and one more technical round with US panel were there. They were very cooperative.

I applied via Naukri.com and was interviewed before Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Prepare well C++ and advanced features of c++.
  • Q2. Operating system related questioms

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn advanced c++11/14.
Learn basic design patterns.
Operating system concepts, IPC, threads, synchronization, sockets.
If u know embedded protocols like i2c, gpio, dds, uart will add advantage. If u have medical device experience then more value addition.
Ultimately they need c++ embedded development.

I applied via LinkedIn and was interviewed in May 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. .Net thorough, JavaScript, Coding questions, Puzzles, Oops, Design patterns, Solid principles

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with the technology stack, coding challenges

I applied via LinkedIn and was interviewed before Oct 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Coding exercise, Basics, Design Principles, Logical Analysis, Problem solving

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with the fundamentals, and logical coding exercises.

I applied via Naukri.com and was interviewed before Jun 2019. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Implement stack data structure
  • Ans. 

    Implement stack data structure

    • Use an array or linked list to store elements

    • Push operation adds element to top of stack

    • Pop operation removes element from top of stack

    • Peek operation returns top element without removing it

  • Answered by AI
  • Q2. How global variable work , how its shared by all function
  • Ans. 

    Global variables are accessible from any part of the program and can be modified by any function.

    • Global variables are declared outside of any function.

    • They can be accessed and modified by any function in the program.

    • If a function modifies the value of a global variable, the new value is visible to all other functions.

    • Global variables can be useful for sharing data between functions.

    • However, overuse of global variables

  • Answered by AI
  • Q3. Program to transpose the matrix
  • Ans. 

    Program to transpose a matrix

    • Iterate through rows and columns of the matrix

    • Swap the elements at (i,j) and (j,i) positions

    • Return the transposed matrix

  • Answered by AI
  • Q4. Internal implementation of pre and post fix operator
  • Ans. 

    Pre and post fix operators are used to increment or decrement a value before or after it is used in an expression.

    • Pre-fix operator (++x) increments the value of x and returns the new value.

    • Post-fix operator (x++) returns the value of x and then increments it.

    • Both operators can be used with variables of numeric data types.

    • They can also be used with pointers to increment or decrement the memory address they point to.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare some standard problem from geekforgeeks.com

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 Senior Test Engineer interview?
Siemens Healthineers interview process usually has 1-2 rounds. The most common rounds in the Siemens Healthineers interview process are Technical, HR and Resume Shortlist.
What are the top questions asked in Siemens Healthineers Senior Test Engineer interview?

Some of the top questions asked at the Siemens Healthineers Senior Test Engineer interview -

  1. program to click on element using selen...read more
  2. What is R1 release mileston...read more
  3. Program to print 0 to l...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

SALARIES

Siemens Healthineers

INTERVIEWS

Synergy Marine Group

No Interviews

INTERVIEWS

Siemens Healthineers

No Interviews

INTERVIEWS

AppInventiv Technologies

30 top interview questions

Tell us how to improve this page.

Siemens Healthineers Senior Test Engineer Interview Process

based on 3 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
 • 147 Interviews
Max Healthcare Interview Questions
4.1
 • 135 Interviews
Dr Lal PathLabs Interview Questions
4.2
 • 123 Interviews
UnitedHealth Interview Questions
4.0
 • 81 Interviews
Paras Hospital Interview Questions
4.4
 • 80 Interviews
Pacific BPO Interview Questions
3.4
 • 77 Interviews
View all
Siemens Healthineers Senior Test Engineer Salary
based on 14 salaries
₹10 L/yr - ₹24 L/yr
67% more than the average Senior Test Engineer Salary in India
View more details

Siemens Healthineers Senior Test Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

3.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
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