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
This round was totally focused on data structures. Two questions to code were given. One was from array and the second one was a basic string related question



If two or more such subarrays exist, return any subarray.
It can be solved via 2 pointers / sliding window approach



‘S’ = “aabcd”, ‘M’ = 2, ‘A’ = [0, 1]
After 1st operation i.e, reversing from [0, 4], ‘S’ = “dcbaa”.
After 2nd operation i.e, reversing from [1, 3], ‘S’ = “dabca”.
Hence, the answer is “dabca”.
I reversed the string by simply using stack
It was a total mixed round. The interviewer was right at the time and he started with the introduction. After the short introduction, he started with the questions about Operating System followed by Questions related to DBMS and a coding ques related to linked list
Tip 1 : You have to focus on CS Fundamentals - OS, OOPS, DBMS, CN
Tip 2 : Practice for top asked interview questions of Operating System
Tip 1 : You have to focus on CS Fundamentals - OS, OOPS, DBMS, CN
Tip 2 : Solve SQL Queries from internet



In the given linked list, there is a cycle, hence we return true.

I used Hare and Tortoise Algorithm
This round was basically based on System Design. One single question of system design in this round. I think I was good enough for that So, I was sent the offer letter after this round in around 2 weeks.
I was asked to design a Parking Lot
Tip 1 : Practice HLD and LLD on some commonly asked designs
Tip 2 : You should know about basics like Caching, 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?