Tip 1 : DSA + OOPS and Web Development is needed
Tip 2 : Good knowledge of core subjects like DBMS, OS, CN
Tip 3 : 2 Good projects + SQL and queries
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
This round was must to be cleared for reaching to interview rounds, it consists of 4 sections to be answered:
15 MCQs for DBMS
15 MCQs for CS concepts
15 MCQs for Output
2 Coding questions



N = 5
JUMP = [1,2,3,4,5]
ANSWER:- The answer should be YES as you can jump from 1st index to 2nd index, from 2nd index to 4th index, and from 4th index to 5th index.



Given :-
‘N’ = 218
Then the answer will be true because it can be rearranged to 128, which is 2 raised to the power of 7.
This round had 2 interviewers, they had a good discussion with me:
They found Angular in my resume so asked about anguar:
Angular vs React
Features of Angular
who developed angular
Advantages/disadvantages
One way binding in Angular
property binding in angular
Then they asked me a coding question:
Given a number n and find all the prime numbers in range 0-n in sorted order
After that they asked some DBMS queries and finally wrapped up the interview.



1) A prime number is a number that has only two factors: 1 and the number itself.
2) 1 is not a prime number.
It was a short round, interviewer asked some generic questions on OS, DBMS, and Computer Networks. Also there was some discussion of project, how it works, why I made the project, etc.
Then he gave me a coding question to remove duplicates from linked list,
Then he asked me to code Object Oriented code on Polymorphism which I coded correctly after some errors.



Assuming the linked list is 3 -> 2 -> 3 -> 4 -> 2 -> 3 -> NULL.
Number ‘2’ and ‘3’ occurs more than once. Hence we remove the duplicates and keep only their first occurrence. So, our list becomes : 3 -> 2 -> 4 -> NULL.

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