They focus a lot on culture fit even for technical roles.
Senior Member Technical Staff Interview Questions
623 senior member technical staff interview questions shared by candidates
Puzzle about finding one odd ball out of 8 balls . Design a text editor. Link list n tree algo questions. C++ basic concepts about vtbl vptr External sorting
Why would you like to change current job.
A question on convergence theory. A question regarding root-finding algorithm (secant method etc).
What's one thing in your life you regret?
How do you work with difficult people? People who you have personality conflicts with? How do you know when to ask for help?
Technical questions related to your talk.
What challenges did you encounter in a recent design, and how would you have done it differently
More on the presentation and after that mostly it is a casual discussion
1. Given an array that contains distinct integers, find the sum of minimum elements of all subsequences. E.g.- Array is [3, 1, 2] Subsequences will be: [3], [3, 1], [3, 2], [3,1,2], [1], [1, 2] and [2] Minimum elements: 3, 1, 2, 1, 1, 1, 2 Answer: 11 2. Check if a Pythagorean triplet is present in an array with distinct integers. E.g. - array: [3, 10, 8, 6, 7] Pythagorean triplet exists: 6,8,10 3. Given a 2D array containing only 0 and 1. Each row is sorted. Find the maximum number of 0 in a row. E.g.- [[0, 0, 0, 1, 1, 1, 1] [0, 1, 1, 1, 1, 1, 1] [0, 0, 0, 0, 0, 0, 1] [0, 0, 1, 1, 1, 1, 1]] Answer: 6
Viewing 261 - 270 interview questions