Tip 1 : Must cover basic topic completely
Tip 2 : After basics go for in depth question and prepare completely according to the role.
Tip 3 : Be confident.
Tip 1 : Write only those topics which you have completed and you are confident in that.
Tip 2 : Do not fake your Resume and revise it carefully.
Everything was normal.
It started with python basics.
then i was given some coding wuestions



1. There will be no leading zeros in any string in the list ‘BINARYNUMS’.
Consider N = 5 and the list ‘binaryNums’= [“0”, “01”, “010”, “100”, “101”]. This list consists of the binary representation of numbers [0, 1, 2, 4, 5]. Clearly, the missing number is 3 and its binary representation will be “11”. So you should return string “11”.
just subtract sum(list) from sum of natural number from 1 to 9






Let ‘N’ = 4, ‘Arr’ be [1, 2, 5, 4] and ‘K’ = 3.
then the elements of this array in ascending order is [1, 2, 4, 5]. Clearly, the 3rd smallest and largest element of this array is 4 and 2 respectively.
I used sorting (not the optimal way of solving it)

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?