Upload Button Icon Add office photos

Filter interviews by

STERIS Interview Questions and Answers

Updated 5 Sep 2024

STERIS Interview Experiences

Popular Designations

3 interviews found

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

(3 Questions)

  • Q1. Agile methodologies
  • Q2. Lamba funtion, list and tuple diff
  • Q3. Class default functions

Senior Automation Engineer Interview Questions asked at other Companies

Q1. 1. Print numbers from 1 to 100 without using any loop ? 2. How do you take out duplicate values from array without using any set ? if you iterate the array and take out unique values , how do you do it for 2lakh items in less time? 3. Diffe... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Apr 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 - Assignment 

- Provide code sample.
- 3 questions about the code sample I provided: what makes me proud of the code sample I provided, what are the characteristics of quality code, and what should each of us to do to be a good team member.

Round 3 - One-on-one 

(1 Question)

  • Q1. Questions about basic OOP such is class, inheritance, etc. Talk briefly about my projects

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
View answer (1)

I applied via Job Portal and was interviewed in Sep 2022. 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 tips
Round 2 - Technical 

(1 Question)

  • Q1. About .net and React js
Round 3 - Technical 

(1 Question)

  • Q1. About .Net Mvc, React
Round 4 - HR 

(1 Question)

  • Q1. General Hr questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared throughout they ask everything they asked me everything about React js and .net mvc .

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (206)

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jul 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 tips
Round 2 - HR 

(1 Question)

  • Q1. Basic questions and answers
Round 3 - Technical 

(1 Question)

  • Q1. Related to work profile
Round 4 - One-on-one 

(1 Question)

  • Q1. Basic and general information

Interview Preparation Tips

Interview preparation tips for other job seekers - Poor management and not good work environment people are force to left the company.

I applied via Recruitment Consulltant and was interviewed in Apr 2022. There were 5 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 

(1 Question)

  • Q1. Nrml interview que and background related queries
Round 3 - Technical 

(1 Question)

  • Q1. Deep discuss on technical and on working style and work attitude
Round 4 - Technical 

(1 Question)

  • Q1. 3 rd round also taken by Zonal Manager to check your field potential and knowledge
Round 5 - HR 

(1 Question)

  • Q1. Discuss on offer and package

Interview Preparation Tips

Interview preparation tips for other job seekers - Great company and culture which I saw at the time of training and team in outstanding and company provide you best and best knowledge to make you more skilled

Sales Executive Interview Questions & Answers

Medtronic user image Neeraj Kumar Singh

posted on 16 Jul 2023

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

I applied via Recruitment Consulltant and was interviewed in Jan 2023. 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 tips
Round 2 - HR 

(1 Question)

  • Q1. Normal resume and experience based questions.
Round 3 - Technical 

(1 Question)

  • Q1. Totally on the ground of job requirements and your experience.
Round 4 - One-on-one 

(1 Question)

  • Q1. Simply general questions to know you better and your interests.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest throughout the interview process.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

Aptitude and Coding round. Was easy to solve and approach. Approached via college placement.

Round 3 - Technical 

(2 Questions)

  • Q1. Given a string for example your name, print the substring of it.
  • Ans. 

    To print a substring of a given string, you can use string slicing in programming languages like Python.

    • Use string slicing to extract the desired substring from the given string.

    • Specify the start and end index of the substring within square brackets after the string variable.

    • Example: If the given string is 'Hello World', to print 'World', use string_variable[6:].

  • Answered by AI
  • Q2. Introduce yourself, Tell about your projects, and Why you believe Medtronic is the best fit for you.

Interview Preparation Tips

Interview preparation tips for other job seekers - Luck matters, that's it.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How do you handle team
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Indeed and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

The interview session took 30 minutes

Round 2 - Technical 

(1 Question)

  • Q1. Implement java code to filter given data from a list using the Java Stream API
  • Ans. 

    Implement Java code to filter data from a list using Java Stream API

    • Use Stream.filter() method to filter data based on a given condition

    • Use lambda expressions to define the filtering condition

    • Collect the filtered data using Collectors.toList() method

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for core Java, and React concepts for full stack role. You must consider capability to demonstrate your knowledge and skills with RESTful APIs.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. How did you handle conflicts in the team?

STERIS Interview FAQs

How many rounds are there in STERIS interview?
STERIS interview process usually has 2-3 rounds. The most common rounds in the STERIS interview process are Technical, Resume Shortlist and HR.
How to prepare for STERIS 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 STERIS. The most common topics and skills that interviewers at STERIS expect are Project Management, Information Technology, Application Support, CRM and SQL.
What are the top questions asked in STERIS interview?

Some of the top questions asked at the STERIS interview -

  1. Questions about basic OOP such is class, inheritance, etc. Talk briefly about m...read more
  2. lamba funtion, list and tuple d...read more
  3. class default functi...read more

Tell us how to improve this page.

STERIS Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Philips Interview Questions
3.8
 • 157 Interviews
Abbott Interview Questions
4.1
 • 147 Interviews
GE Healthcare Interview Questions
4.0
 • 72 Interviews
Medtronic Interview Questions
4.0
 • 70 Interviews
Stryker Interview Questions
4.0
 • 41 Interviews
3M Interview Questions
4.2
 • 30 Interviews
View all

STERIS Reviews and Ratings

based on 13 reviews

3.9/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.7

Salary

4.0

Job security

4.2

Company culture

3.4

Promotions

3.5

Work satisfaction

Explore 13 Reviews and Ratings
Software Developer
7 salaries
unlock blur

₹9 L/yr - ₹22 L/yr

Field Service Engineer
5 salaries
unlock blur

₹6 L/yr - ₹6.8 L/yr

System Administrator
4 salaries
unlock blur

₹5.5 L/yr - ₹6.9 L/yr

Information Security Analyst
4 salaries
unlock blur

₹12.8 L/yr - ₹23.6 L/yr

HR Generalist
4 salaries
unlock blur

₹7.8 L/yr - ₹8.4 L/yr

Explore more salaries
Compare STERIS with

3M

4.2
Compare

Johnson & Johnson

4.0
Compare

Siemens Healthineers

4.0
Compare

Becton Dickinson

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