Shunting Yard Algorithm
Senior Software Engineer Test Interview Questions
95,680 senior software engineer test interview questions shared by candidates
How to get a random number from an array of length 100, without repetition.
You have 2 sand glass. 1 shows 7 minutes and other shows 11 minutes. You have an egg which needs to be boiled exactly for 15 minutes on a stove. How will you do it.
Delete duplicate in sorted linked list
Implement a lock-free queue/stack/... using atomic test-and-set functions.
Remove the comments from code.
How the viewpager is implemented?
Design ride service like Uber
Difference between process/thread, heap/stack. What is JIT?
1st phase 1st technical interview: Problem was that given a positive integer n print all distinct ordered sets of positive integer which have sum equal n. eg:- for n=2 output: { [1, 1] } for n=3 output: { [1, 1, 1], [1, 2], [2, 1] } for n=4 output: { [1, 1, 1, 1], [1, 1, 2], [1, 2, 1], [2, 1, 1], [2, 2], [1, 3], [3, 1] }
Viewing 451 - 460 interview questions