So, do you want to be a QA?
Software Interview Questions
551,308 software interview questions shared by candidates
What's the difference between a process and a thread?
There is a king. He has 1000 wine bottles. One of them is poisonous. poison shows its effect on 31st day after the intake. King has a party scheduled on the 31st day where he has to serve wine. what is the minimum number of soldiers that he would require to identify which bottle is poisonous before the party. Condition: each soldier can drink the combination formed from any number of bottles.
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.
Difference between == & === ?
Find the kth largest element in an array
Viewing 2561 - 2570 interview questions