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 on zoom from 5PM.



We have an array ARR = {1, 2, 3, 4, 5, 6} and M = 3 , considering 0
based indexing so the subarray {5, 6} will be reversed and our
output array will be {1, 2, 3, 4, 6, 5}.
We can break down the complete array into small subarrays of size k and reverse them.
Tip 1 : You have to focus on CS Fundamentals - OS, OOPS, DBMS, CN
It was a mix round where I was asked two problems. One was a coding problem and second one was the set of some basic DBMS questions



We can use hashing for this. store the sum till that index in a map. If you find same sum already present in the map then that subarray has zero sum
Tip 1 : You have to focus on CS Fundamentals - OS, OOPS, DBMS, CN

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