Tip 1 : Work on Competitive Programming skills. That is one thing most companies look out for during hiring. Solve at least 100
questions from every topic.
Tip 2 : You should have at least 2 good projects on your resume. Only write the things that you are completely sure of.
Tip 3 : Work on CS fundamentals as well like -OOPS, OS, and DBMS. There will be MCQ questions from this in the coding round as well as in the 1:1 round
Tip 1 : Need at least 2 good projects on the resume. Write a short 2-3 lines summary of the project and the tech stack
used.
Tip 2 : Resume should be 1 page only. Try to keep the Resume short with useful information only.
Tip 3 : Your Resume should clearly mention the skillset you have. Companies sometimes filter out Resume based on
skillset only
It was a 1hr round from 1 pm-2 pm over zoom.



I took one map where the key will be the time and value will be either"Arrival" or "Departure". Store all the values given in 2 arrays in this map. now sort this map according to the key. after sorting the map, iterate through every key and check if the value is arrival -> sum+1 and if the value is "departure" -> sum-1. Return the value of the sum



[1, 2, 3, 4] is a strictly increasing array, while [2, 1, 4, 3] is not.
I firstly took one array ans[] and initialized it with 1. now take two pointers i and j, where i will start from 0 and j will start from 1. now take a while loop with condition -> (i arr[i] then
ans[j] = max(ans[j], ans[i]+1
return max value-form the ans array
It was a 1 hr round from 2 pm-3 pm. HR mailed me the zoom link
Design BookMyShow
Tip 1: List down all the requirements. Work with the interviewer to check what all should be covered. For example in this
case should we consider any coupons for booking shows?
Tip 2: Try to estimate the number of queries or hits you will get. This will help you to scale your system better
Tip 3: Design a single server with DBMS, API, and business logic and then scale it for the no. of queries estimated in
Tip-2. Learn about CAP theorem

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