Tip 1 : Always go through current interview experiences and find out common asked questions.
Tip 2 : have a good naukri profile. Recruiters will reach out to you based on that.
Tip 3 : You will learn a lot through giving interviews. They help in identifying your weak and strong points.
Tip 1: Describe the things you have worked on in good detail.
Tip 2: Write the things only you are confident in.
Design cricket score board.
I design classes to represent cricket team and match. I wrote a driver class that orchestrated the inputs and computed the match outputs.



Used a queue to solve this.



Used common ancestor approach to solve this


1. In each row, integers are sorted from left to right.
2. Each row's first integer is greater than the previous row's last integer.
Input:
'MATRIX' = [ [1, 3, 5, 7], [10, 11, 16, 20], [23, 30, 34, 60] ], 'TARGET' = 3
Output:1
Explanation: Since the given number ‘TARGET’ is present in the matrix, we return true.
Start from right top corner and traverse to the left or bottom based on if the element is smaller or larger than the current cell element
Calculate delivery time for a food delivery app
It was a managerial tech round. Apart from managerial question was asked to design a dashboard to show information on routers running in a network.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?