Tip 1 : DSA + OOPS is must for cracking this company
Tip 2 : Good knowledge of core subjects like DBMS, OS, CN
Tip 3 : 2 Good projects + SQL and queries
Tip 4 : Remember all the OA questions solved, they can be asked in interview also
Tip 1 : Good formatting of resume, have the knowledge of what you put into your resume
Tip 2 : should be a 1-page resume with at least 2 projects
It was the first round of process, after clearing this test, we can proceed with the interview.
It was proctored exam
This Online Test comprised of 3 Sections:
Aptitude- 20 MCQs
Concept- 20 MCQs
Programming- 1 out of 2 to be attempted. I only remember the attempted one.



'ARR' = [3, 4, -1, 1, 5] and 'K' = 3
Output = [4, 4, 5]
Since the maximum element of the first subarray of length three ([3, 4, -1]) is 4, the maximum element of the second subarray of length three ([4, -1, 1]) is also 4 and the maximum element of the last subarray of length three ([-1, 1, 5]) is 5, so you need to return [4, 4, 5].
It was mixed round where all the types of questions were asked from DSA, DBMS, and OS, questions were:
Describe yourself to me.
Deadlock definition
Deadlock-resolution strategies and examples
DBMS definition
Normalization and denormalization definition
Normal form types
Sorting types, how they work, and how complex it is
2 or 3 of the questions were asked on the projects.
Then interviewer asked to explain the sliding window question that I attempted in OA round of the process.



This was the last round. It was Managerial + HR round. HR was evaluating my confidence and soft skills. It was primarily a more difficult technical round than the one before.
This round revolved around JavaScript as the interviewer saw JavaScript in my resume.
What type of language is JavaScript?
== vs === in JavaScript?
Arrow functions definition.
Normal functions in JS.
How to declare an arrow function?
A small coding exercise to be solved only in JS
How to empty an array in JS?
Some Questions from Computer Networks :
What happens when we hit www.google.com?
Explain OSI model.
then he asked some OOPS questions like inheritance, polymorphism, and encapsulation.
Finally He asked me to code an example of polymorphism.

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