Tip 1 : Be Concise When Answering Questions
Aim to fit your answer into 30–90 seconds. Longer answers are difficult to follow for many people, including your interviewers.
Tip 2 : Maintain a Dialogue With Your Interviewers
Whether you are at a behavioural, coding, or design interview, make sure you are maintaining a dialog with your interviewers.
Tip 3 : Refer to interview experiences shared on Coding Ninjas and Leetcode
Tip 1 : Keep your resume clear and concise
An employer takes an average of 30 seconds to skim a resume. You want them to see right away that you are qualified for the position.
Tip 2 : Proofread your resume numerous times
Be sure there are no spelling or grammar mistakes. Have someone else read it over as well. A simple spelling mistake on a resume can give a negative impression to the employer. It can even prevent you from getting the job.
Karat based coding round.
I was given a 60 mins time slot for the coding round, this was having 2 system design specific questions which was expected to be answered 10 mins and next 45 mins was given for the one coding problem.
System design question was based on round robin load balancer disadvantage, second question was on consistent hashing use case.
How does Round Robin Load Balancer Work and its disadvantage
Consistent Hashing
There were logs provided with timestamp, user, resource id- ["58523", "user_1", "resource_1"]. Write a function that takes the logs and returns the resource with the highest number of accesses in any 5 minute window, together with how many accesses it saw.
I took max and min time and divided it in 5min windows and saved that to a dict then processed the records one by one and added to each window based on time
Its a DS Algo round
Time :- 12:30-1:30PM
Its was basically on a video call, the interviewer was helpful and explained the problem first.
Its a DS Algo round
Time :- 1:30-2:30PM
Its was basically on a video call, the interviewer was helpful and explained the problem first.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the result of 4 % 2?