Tip 1 : Practise all shared topics
Tip 2 : Go with all sessions
Tip 3 : Try to make projects
Tip 1 : Must have programming concept clear
Tip 2 : Always mention those thing in resume whose knowledge you have.
Focus on camera, don't cheat
Deadlock in system
How to debug memory issue
Tip 1 : Go with logs
Tip 2 : Troubleshoot step by step
Need to design infra in kubenetes
Tip 1 : Go with kubernetes doc

Input:
MATRIX = [ [1, 3, 5, 7], [10, 11, 16, 20], [23, 30, 34, 60] ]
Output:
1 3 5 7 20 60 34 30 23 10 11 16
Explanation: Starting from the element in the first row and the first column, traverse from left to right (1 3 5 7), then top to bottom (20 60), then right to left (34 30 23), then bottom to up (10) and then left to right (11 16).
HR round

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?