Fair coin is tossed 3 times. What is the probability of getting at least 2 heads.
Quantitativ Interview Questions
10,165 quantitativ interview questions shared by candidates
Q: A function f(x) is defined as the integral of another function h(x, t) with respect to variable t. The integration interval is [0, g(x)]. What is the first derivative of f (clearly with respect to x)?
They asked basic background stuff and then got into technical math questions. It was quite a challenge.
Say you have a list of numbers, how would you output a list that eliminates repeating occurrences of the numbers? What is the time complexity of the method? Can you do better?
Given the probability going to restaurants on Saturday and Sunday, what's the probability of going to restaurants on both days?
Play a game with a 64-sided die. Can either take the value of the die in $, or pay 1$ to play again. What's the expected value of the game?
Two dice rolling questions, angle of clock hands, expected value of 20 faced dice.
Decompose 300,000 into prime factors, then arrange the resulting digits into the smallest possible number.
Average speed of a race car
The problem was to create a heap, where you could add elements and remove the top element, with the contraints that the top-most element had to always be less than the top most element in the left child tree, and less than the top most element in the right child tree, and that the left child tree had to have as many or one more element than the right child tree. Furthermore, there was a "min" function (returns the value at the top of the tree) and an empty function (returns an empty tree). The interview started using a collabedit software tool where the interviewer and I could rapidly write and exchange code. Having not been comfortable with the syntax and structure of OCaml, I noted that the person who set up the interview told me it wasn't a requirement, but I was told to carry on in OCaml. With all that said, my preoccupation with not knowing the syntax led me to make simple functional mistakes, the interview took longer than expected, and after a week of waiting for a response, I was rejected. The code I'm attaching is a combination of what we did through the interview, and what I finished off in my own time (my_merge, create_tree)
Viewing 1481 - 1490 interview questions