- What is CAPM?
- What do you think of the market right now?
- Write a correct-syntax function to find all prime numbers between 1 and N(any language)
- Write an efficient function to compute the Variance of the data stored in a double array
- What are the two ways to write C main function? : main() and main(char **argv, int argc) and what are those arguments?
- Suppose we have three fair dices and we toss it in order, what is the probability of the outcome coming up with a strictly increasing order? ( ex. (1,3,5), (3,5,6) are ok, but (4,3,5) is not)
- If we have a function that can generate a random number between 1 to n(integer) with uniform distribution, how can we create another function that will generate a random number between 1 to m(integer > n). When I get this task, he say that he'll let n=3 and m=5, but the interviewer said that it can be done in any number of n and m.