Tip 1 : Consistency for coding is important. The approach is seen not the syntax/language
Tip 2 : Prepare for system design questions if you are having work experience.
Tip 1 : Simple and relevant to the job description
Tip 2 : Mention impact statements
Online hackerrank assessment 3 coding questions were asked. 2 easy, 1 medium



'arr '= [1,2,3,4,5]
'k' = 1 rotated array = [2,3,4,5,1]
'k' = 2 rotated array = [3,4,5,1,2]
'k' = 3 rotated array = [4,5,1,2,3] and so on.
The problem was straight forward.
System Design round + SQL queries + OOPs Concepts
Design a system for a web crawler
Tip 1: Ask the interviewer the right questions and write down all the information.
Tip 2: Share screen to use a notepad or sketch to briefly describe or write the low level/highlevel diagrams/code

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?