Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Stryker Team. If you also belong to the team, you can get access from here

Stryker Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Stryker Software Engineer Interview Questions and Answers

Updated 8 Apr 2022

Stryker Software Engineer Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Python, c++, quans, logical

Round 2 - Technical 

(1 Question)

  • Q1. Oops, data structure, python
Round 3 - HR 

(4 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. Share details of your previous job.
  • Q3. What is your family background?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, prepare well and work hard!

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Question on Template concept in c++
  • Q2. Questions related to string
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Input output pointers related
  • Q2. Polymorphism,casting class,
Round 2 - One-on-one 

(1 Question)

  • Q1. Data structure used for snake and ladder
Round 1 - Technical 

(1 Question)

  • Q1. Oops, c#, design , .net framework
Round 2 - One-on-one 

(1 Question)

  • Q1. Managerial, projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice oops , data structures and algorithms, problem solving
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

It was an MCQ based test. Code Snippets as well as OOPS, OS, DBMS questions were there

Round 3 - One-on-one 

(1 Question)

  • Q1. How to implement a stack OS Questions Problem Solving Questions OOPS concepts DS questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Smart Pointers About the project done in college
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Sep 2023. There were 5 interview rounds.

Round 1 - Coding Test 

IT was basic question from string and array

Round 2 - One-on-one 

(2 Questions)

  • Q1. Data structure question find all leaf node from tree.
  • Ans. 

    Use depth-first search to traverse the tree and identify leaf nodes.

    • Implement depth-first search algorithm to traverse the tree.

    • Identify nodes with no children as leaf nodes.

    • Store leaf nodes in an array for retrieval.

  • Answered by AI
  • Q2. Print sentence word in reverse order without using default function. eg: input:-> I live in New York. output:-> I evil ni weN kroY.
  • Ans. 

    Reverse each word in a sentence without using default function.

    • Split the sentence into words

    • Iterate through each word and reverse it

    • Join the reversed words back into a sentence

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Programming question :Fibonacci series using recursion.
  • Ans. 

    Fibonacci series using recursion is a classic programming problem where each number is the sum of the two preceding ones.

    • Define a recursive function that takes an integer n as input

    • Base case: if n is 0 or 1, return n

    • Recursive case: return the sum of the previous two Fibonacci numbers

    • Call the function recursively with n-1 and n-2 until base case is reached

  • Answered by AI
  • Q2. Programming question: Find 1st 2nd and 3rd highest from array of integer.
  • Ans. 

    Find 1st, 2nd, and 3rd highest integers from an array.

    • Sort the array in descending order.

    • Retrieve the first three elements from the sorted array.

    • Handle cases where array length is less than 3.

  • Answered by AI
Round 4 - Mangerial Round 

(1 Question)

  • Q1. They asked Puzzle
Round 5 - HR 

(1 Question)

  • Q1. Salary Discussion

Skills evaluated in this interview

I applied via Company Website and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Concepts of Oops. Ex: Encapsulation, Abstraction, Polymorphism with real time examples.
  • Q2. Multithreading concepts in Java
  • Ans. 

    Multithreading in Java allows multiple threads to execute concurrently within a single program.

    • Java provides built-in support for multithreading through the java.lang.Thread class.

    • Threads can be created by extending the Thread class or implementing the Runnable interface.

    • Synchronization is used to prevent race conditions and ensure thread safety.

    • Java also provides several classes and interfaces for managing thread exec...

  • Answered by AI
  • Q3. 2 Coding Questions were asked. first was easy and was medium type.
  • Q4. Questions related to my project in detail.

Interview Preparation Tips

Interview preparation tips for other job seekers - They had asked Questions according to my resume. So, be confident with the skills you mentioned. Be Confident and cool. The interviewers were very friendly.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Prepare well on arrays, lists and its operations
  • Q2. Get to know well about your current project

I applied via Recruitment Consulltant and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. C++ related basic questions
Round 2 - Behavioral 

(1 Question)

  • Q1. C++ and project related advanced questions
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't pretend like you know everything. Just tell your skills and work experience truely.

I applied via Approached by Company and was interviewed before Nov 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 - Coding Test 

Basic problem solving easy to medium level

Round 3 - One-on-one 

(1 Question)

  • Q1. Coding questions based on loops, arrays
Round 4 - One-on-one 

(1 Question)

  • Q1. Coding a sorting algorithm
  • Ans. 

    Sorting algorithm arranges elements in a specific order.

    • Choose an appropriate sorting algorithm based on the data size and type.

    • Common sorting algorithms include bubble sort, insertion sort, merge sort, quicksort, and selection sort.

    • Implement the chosen algorithm in the programming language of choice.

    • Test the algorithm with various input sizes and types to ensure correctness and efficiency.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good with what is in resume, decent problem solving skills + some basic design patterns will help you clear the interview

Skills evaluated in this interview

Stryker Interview FAQs

How many rounds are there in Stryker Software Engineer interview?
Stryker interview process usually has 3 rounds. The most common rounds in the Stryker interview process are Aptitude Test, Technical and HR.
How to prepare for Stryker Software Engineer 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 Stryker. The most common topics and skills that interviewers at Stryker expect are Multithreading, Algorithms, C++, Data Structures and Manual Testing.

Tell us how to improve this page.

Stryker Software Engineer Salary
based on 56 salaries
₹8 L/yr - ₹16 L/yr
57% more than the average Software Engineer Salary in India
View more details

Stryker Software Engineer Reviews and Ratings

based on 4 reviews

4.4/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

3.7

Salary

4.3

Job security

4.2

Company culture

3.8

Promotions

3.5

Work satisfaction

Explore 4 Reviews and Ratings
Staff Engineer
208 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
114 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Staff Engineer
91 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Design Engineer
88 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Area Sales Manager
64 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Stryker with

Johnson & Johnson

4.0
Compare

Medtronic

4.0
Compare

Becton Dickinson

4.0
Compare

Boston Scientific

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