email me to get details of the question or comment on this post.
Software Engineer Interview Questions
467,295 software engineer interview questions shared by candidates
Why are you looking for new work?
An array contains some random positive and negative numbers. Arrange array elements such that all positive elements are on left side, don't care about negative elements. Number of operations allowed - O(n)
Why does one use MSE as a measure of quality. What is the scientific/mathematical reason for the same?
What's the difference between a process and a thread?
given a vector of strings of length n with each word having a length of m on average, group all anagrams into a cluster. Do this for the case that n >>>>>> m and in the most efficient way possible. Assume extra space allowed.
Runnable interface, Synchronization, ect
Write a function that expects 3 int parameters( a, b, c ) and returns b is a = 0 and c if a = 1. You are not allowed to use if loop or comparison operators.
int fun(int a) { int i=0; if(a>99) i++; return a-12; return fun(fun(a)) } int main() { printf("%d", fun(69); printf("%d",i); }
Determine the sum of all prime numbers less than 1000.
Viewing 1991 - 2000 interview questions