Tip 1 : Listen the question properly and speak loud
Tip 2 : Read your resume thoroughly
Tip 3 : Prepare for LLD as well
Tip 1 : Make at least 2 projects
Tip 2 : Add links for Github/website or App URL any
DSA


Consider the starting array: [1, 1, 1, 1]. You can update any index of this array with 4 (the sum of all elements of the current array).
I first applied bubble sort. It was not good enough.
Interviewer asked me to optimise the solution.
Then i gave solution with merge sort and interviewer was happy.



If there are any duplicates in the given array we will count only one of them in the consecutive sequence.
For the given 'ARR' [9,5,4,9,10,10,6].
Output = 3
The longest consecutive sequence is [4,5,6].
Can you solve this in O(N) time and O(N) space complexity?
Design a Cricket Score Board. The Score Board should have:
a. Runs scored by the current batsmen
b. Ball wise over history of what event took place on that ball (4, 6, wicket)
c. Innings should switch over smoothly.
d. Target countdown, runrate computation is a plus.
e. With the inputs given, the scoreboard should recognise which team won and tag that event's winner.
Work Life Balance
Future Balance
Introduce yourself.
What are your strengths?
What are your weaknesses?

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