Upload Button Icon Add office photos

Siemens Healthcare

Compare button icon Compare button icon Compare

Filter interviews by

Siemens Healthcare Logistics Executive Interview Questions and Answers

Updated 27 Jun 2021

Siemens Healthcare Logistics Executive Interview Experiences

1 interview found

I applied via Recruitment Consultant and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. 5s rules and how will maintain the inventory and how hendal the all transportation
  • Ans. 

    5S rules can help maintain inventory and transportation by promoting organization, cleanliness, and efficiency.

    • Implementing 5S principles can help reduce waste and improve productivity in logistics operations

    • Sort and organize inventory to eliminate excess and improve visibility

    • Standardize processes and procedures to ensure consistency and efficiency

    • Maintain a clean and safe work environment to prevent accidents and imp...

  • Answered by AI
  • Q2. I will hendal through your company policy and i will try my experience

Interview Preparation Tips

Interview preparation tips for other job seekers - interview is better than my 3 year experience i will better work and you proudly fill in my work

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Jun 2022. 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 tips
Round 2 - HR 

(2 Questions)

  • Q1. About the current work structure and other
  • Q2. What is the work profile and other

Interview Preparation Tips

Interview preparation tips for other job seekers - Be perfect 1st in which field you are working
Everyone one will respect you if are perfect in your role.

Interview Questionnaire 

1 Question

  • Q1. Its all about your confidence level and for analysing the reliability of employee.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Criteria related to good communication skill, ms office knowledge and experience.

Round: Test
Experience: Test related to medical billing terms, denials, module and latest us healtcare updates.

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

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
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
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. How much experience do u have?
  • Q2. Explain shortly about your experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare according to your resume
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Nov 2023.

Round 1 - Coding Test 

Simple aarray problems

Round 2 - Technical 

(2 Questions)

  • Q1. Multi threading concepts
  • Q2. Java concepts with some code to finished

Siemens Healthcare Interview FAQs

What are the top questions asked in Siemens Healthcare Logistics Executive interview?

Some of the top questions asked at the Siemens Healthcare Logistics Executive interview -

  1. 5s rules and how will maintain the inventory and how hendal the all transportat...read more
  2. i will hendal through your company policy and i will try my experie...read more

Tell us how to improve this page.

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.4
 • 79 Interviews
GE Healthcare Interview Questions
4.0
 • 72 Interviews
Advantmed Interview Questions
3.6
 • 50 Interviews
Redcliffe Labs Interview Questions
4.0
 • 47 Interviews
Healthians Interview Questions
3.5
 • 46 Interviews
View all
Siemens Healthcare Logistics Executive Salary
based on 6 salaries
₹2.5 L/yr - ₹6.5 L/yr
23% more than the average Logistics Executive Salary in India
View more details

Siemens Healthcare Logistics Executive Reviews and Ratings

based on 2 reviews

3.4/5

Rating in categories

3.4

Skill development

3.4

Work-life balance

1.0

Salary

1.0

Job security

3.4

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 2 Reviews and Ratings
Software Developer
226 salaries
unlock blur

₹6 L/yr - ₹24.6 L/yr

Senior Software Engineer
156 salaries
unlock blur

₹9.1 L/yr - ₹28 L/yr

Senior Systems Engineer
106 salaries
unlock blur

₹8 L/yr - ₹22.2 L/yr

Software Engineer
71 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