i
Stryker
Filter interviews by
Implemented a new CRM system to streamline customer interactions and improve data management.
Identified key requirements for the CRM system through stakeholder interviews
Collaborated with IT team to customize the system to meet specific business needs
Conducted user training sessions to ensure smooth adoption of the new system
Shallow copy duplicates an object but references nested objects, while deep copy duplicates everything, including nested objects.
Shallow Copy: Creates a new object, but inserts references to the original object's nested objects.
Example of Shallow Copy: In Python, using 'copy.copy()' creates a shallow copy.
Deep Copy: Creates a new object and recursively copies all objects found in the original.
Example of Deep Copy:...
Using specific strategies to address different situations in order to achieve desired outcomes.
Identify the specific situation or challenge at hand
Analyze the factors involved and potential obstacles
Develop a tailored strategy based on the unique circumstances
Implement the strategy effectively to achieve the desired outcome
Evaluate the results and make adjustments as needed
Quality control is the process of ensuring that a product or service meets the desired quality standards, while quality assurance is the process of ensuring that the systems and processes used to create the product or service are effective and efficient.
Quality control involves inspecting and testing the product or service to ensure it meets the desired quality standards.
Quality assurance involves implementing and...
Draft is the taper or angle added to the vertical walls of a plastic part to aid in its ejection from the mold.
Draft is necessary to prevent the plastic part from sticking to the mold during ejection.
The amount of draft required depends on the size and shape of the part, as well as the type of plastic being used.
Draft angles typically range from 1 to 3 degrees, but can be as high as 5 degrees for larger parts.
With...
Bonus tolerance in GD&T is an additional tolerance that allows for variations beyond the specified limits.
Bonus tolerance is used to provide flexibility in manufacturing processes.
It allows for variations in dimensions or positions beyond the specified tolerances.
Bonus tolerance can be applied to individual features or the entire part.
It helps to ensure functional fit and assembly of components.
For example, if a h...
Tapered surfaces facilitate easier ejection of molded parts by reducing friction and allowing for smoother release from the mold.
Tapered surfaces reduce the contact area between the mold and the part, minimizing friction.
A common example is in injection molding, where parts like plastic containers often have tapered designs.
Taper angles typically range from 1 to 5 degrees, depending on the material and part geomet...
I have extensive experience in data analysis, project management, and stakeholder communication across various industries.
Worked as a data analyst at XYZ Corp, where I improved reporting efficiency by 30% through automation.
Led a project team to analyze customer feedback, resulting in a 15% increase in customer satisfaction scores.
Utilized SQL and Python for data extraction and analysis, providing actionable insig...
Selenium was used to automate testing of dynamic elements and AJAX calls in the single page application.
Used Selenium WebDriver to locate and interact with dynamic elements
Implemented explicit waits to handle AJAX calls and page loading
Used Page Object Model design pattern to organize and maintain test code
Utilized Selenium Grid for parallel testing on multiple browsers and platforms
Automation test cases for OTP application
Identify the key functionalities of the OTP application
Create test cases for each functionality
Use automation tools like Selenium or Appium to automate the test cases
Ensure the test cases cover positive and negative scenarios
Include boundary value analysis and equivalence partitioning in test cases
I applied via Naukri.com and was interviewed in Feb 2021. There was 1 interview round.
Reverse an integer
Convert integer to string and reverse the string
Use modulo operator to extract digits and reverse them
Use recursion to reverse the integer
Print 1 to 10 without using loops.
Use recursion to print numbers.
Use a switch statement to print numbers.
Use an array and map function to print numbers.
Reverse a string using recursion
Create a function that takes a string as input
If the string is empty, return an empty string
Otherwise, call the function recursively with the substring starting from the second character
Concatenate the first character with the result of the recursive call
Thread is a lightweight unit of a process. Process is an instance of a program that runs independently.
Threads share the same memory space as the parent process while processes have their own memory space.
Threads are faster to create and switch between than processes.
Processes are more secure and stable than threads.
Example: A web server can have multiple threads to handle multiple requests simultaneously.
Example: A wo...
SPI and I2C are communication protocols used to transfer data between devices.
SPI is faster than I2C.
SPI uses separate lines for data and clock signals while I2C uses a shared line.
I2C supports multiple devices on the same bus while SPI requires a separate chip select line for each device.
SPI is commonly used for high-speed communication between microcontrollers and peripherals while I2C is used for low-speed communica...
The start condition for SPI is a low-to-high transition on the SCK line while SS is high.
SPI communication begins when the master device sends a start condition to the slave device.
The start condition is a low-to-high transition on the SCK line while SS is high.
The SS line is used to select the slave device for communication.
The SPI protocol supports multiple slaves, but only one slave can be selected at a time.
After t...
C++ program to store EMP ID, name, and salary using array of strings.
Declare an array of strings to store EMP ID, name, and salary
Use cin to take input from user and store in the array
Use cout to display the stored data
I applied via Recruitment Consulltant and was interviewed in Jul 2024. There were 3 interview rounds.
It’s a psychological test
Currently learning automation testing using Selenium WebDriver
Studying Selenium WebDriver to automate test cases
Practicing writing test scripts in Java
Exploring different frameworks like TestNG and JUnit for test automation
I will bring extensive experience in quality analysis, strong attention to detail, and a proven track record of improving processes and ensuring compliance.
Extensive experience in quality analysis
Strong attention to detail
Proven track record of improving processes
Ensuring compliance with regulations and standards
Ability to lead and mentor team members
I appeared for an interview in Mar 2025, where I was asked the following questions.
Form the largest number from an array of non-negative integers by concatenating them optimally.
Convert integers to strings for easy concatenation.
Sort the strings based on custom comparison: xy vs yx.
Example: For [3, 30, 34, 5, 9], sorting gives ['9', '5', '34', '3', '30'].
Join the sorted array to form the largest number: '9534330'.
Handle edge cases: if the largest number is '0', return '0'.
This program demonstrates OOP principles: encapsulation, inheritance, and polymorphism using a simple class structure.
Encapsulation: Use private variables and public methods to control access. Example: class 'Car' with private 'speed' and public 'accelerate()'.
Inheritance: Create a base class and derive subclasses. Example: class 'Vehicle' and subclasses 'Car' and 'Bike'.
Polymorphism: Use method overriding to provide s...
I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.
Experiment based question
posted on 5 Sep 2024
I applied via LinkedIn and was interviewed in Nov 2023. There were 3 interview rounds.
Gallup round.will get better clarity in you tube .
Using specific strategies to address different situations in order to achieve desired outcomes.
Identify the specific situation or challenge at hand
Analyze the factors involved and potential obstacles
Develop a tailored strategy based on the unique circumstances
Implement the strategy effectively to achieve the desired outcome
Evaluate the results and make adjustments as needed
I applied via Campus Placement and was interviewed in Nov 2023. There were 2 interview rounds.
Most topics were covered like Aptitude, OS, Java, Python etc... & duration of exam is 1hr
JDK is a development kit for creating Java applications, while JRE is a runtime environment for executing Java programs.
JDK stands for Java Development Kit and includes tools for developing Java applications.
JRE stands for Java Runtime Environment and is used to run Java programs.
JDK includes JRE, so if you have JDK installed, you also have JRE.
JDK includes compiler (javac), debugger (jdb), and other tools for developm...
Shallow copy duplicates an object but references nested objects, while deep copy duplicates everything, including nested objects.
Shallow Copy: Creates a new object, but inserts references to the original object's nested objects.
Example of Shallow Copy: In Python, using 'copy.copy()' creates a shallow copy.
Deep Copy: Creates a new object and recursively copies all objects found in the original.
Example of Deep Copy: In P...
Top trending discussions
The duration of Stryker interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 27 interview experiences
Difficulty level
Duration
based on 394 reviews
Rating in categories
Staff Engineer
224
salaries
| ₹21.3 L/yr - ₹38 L/yr |
Senior Software Engineer
121
salaries
| ₹16.5 L/yr - ₹30.1 L/yr |
Senior Staff Engineer
110
salaries
| ₹24 L/yr - ₹53 L/yr |
Senior Design Engineer
102
salaries
| ₹6.4 L/yr - ₹23 L/yr |
Software Engineer
66
salaries
| ₹9 L/yr - ₹19 L/yr |
Gland Pharma
Poly Medicure
Medtronic
Becton Dickinson