Given two unsorted arrays, one with event start times and one with end times, find out if any two events overlap.
Engineer Interview Questions
934,722 engineer interview questions shared by candidates
You are given a list of strings (e.g. ["cat", "dog", "hat", "apple", "c"] ). Write a program that would take as input a string containing a wild card character, like "*at", "**t" (could be "cat", "hat", "bat"), "ca*", etc. and return true if there is a corresponding string in the list, and false otherwise.
SQL : Top 3 Products by sale, % using Case, Basic Having clause and one Set operator (Intersect) type question Python : Average word length, ip-address parsing, dictionary, list of lists, flatten list of lists. ( Similar to previous interview experiences)
SDLC, what games have you played till now? Have you played any PS games or not. Difference between Regression Testing and Retesting.
Did you implement text analytics?
You have 8 balls. All are identical except one is slightly heavier. You have a balance. What is the minimum number of weighings required to find the heavier ball?
Describe a function (in C) that does the following Input : an integer. Output: if that integer is 4, the function returns 7. if that integer is 7, the function returns 4. constraints: the input is SURE to be either 4 or 7. no need to validate. you are not allowed to use any condition/flow commands (if, switch, while, for, trinary operator...) you are not allowed to use any external library or import anything (like math..) you are not allowed to use %(modulu), * (multiplication)
Find the second maximum element in an unsorted array of integers, using single for loop.
reverse bits of an integer that is a power of 2 , keeping complexity in mind.
string compression: aaabbbbcc ->a3b4c2
Viewing 821 - 830 interview questions