Tip 1: Your ideas should have a mathematical backing.
Tip 2: Think out loud.
Tip 1: Highlight your achievements.
Tip 2: It is good to have quant-related projects.
One puzzle and one coding problem were asked.



A person can also kill himself.
Tip 1: Every claim should have mathematical reasoning.
Tip 2: Without sound proofs, your approach is invalid.
Tip 3: Have strong fundamentals.


Let 'STR' = "$$**".
There are consecutive "$$" in 'STR' and it is Ninja's turn to begin the game. So, Ninja changes the consecutive "$$" to "**". This changes 'STR' to "****".
Now, as it is his friend's turn and there are no more consecutive "$$", Ninja wins the game.
I used the standard DP game-theoretic approach for this.
I was asked three problems:
Let’s say you have a biased coin, but you don’t know the probability p of it landing heads. How would you estimate the value of ppp? I was expected to discuss confidence intervals and variance.
Tip 1: Revise statistics.
The expected number of throws required to get two consecutive sixes when using a fair six-sided die.
This was a game puzzle.
There are two players on the same team; let’s call them A and B. The host has an 8×8 chessboard with a coin placed on each of the 64 cells. Each coin can show either heads or tails, as decided by the host.
The host shows the chessboard to A and whispers a secret number xxx (from 0 to 63) into A’s ear. Now, A has to help B guess this secret number. The only action A can take is to flip exactly one coin on the board (or choose not to flip any) before showing the board to B.
B must then guess the number by observing the final state of the chessboard. If B guesses correctly, A and B win; otherwise, they lose. They are allowed to strategize before the game begins.
Can they win the game?
Yes, they can.
The solution uses the XOR operation. Number each cell on the chessboard from 0 to 63. A computes the XOR of all indices where the coins show heads.
After this operation, when B computes the XOR of all indices showing heads, the result becomes c⊕y=x, allowing B to correctly determine the secret number.
This is the expected solution.
Tip 1: Try multiple approaches and prove why the previous one won’t work before shifting to a new strategy.
Tip 2: Explain all your thoughts clearly.
Tip 3: Solve interactive puzzles.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What does the SQL function NOW() return?