Tip 1: Be clear with the concepts you are preparing and know the top most asked questions for the particular company.
Tip 2: Be confident during the interview and honest with every question asked.
Tip 3: Have at least one programming language in which you can code anything.
Tip 1: Include at least 2 projects with proper descriptions.
Tip 2: Ensure your resume is readable.
There were 23 MCQs based on Java, 2 coding questions, and 1 SQL question. The coding questions were hard, but they were solvable if you noticed the pattern.



Tree-based question where each number's factor will go down its leaf and will continue until it gets to 1. Later we were to find the height of the tree formed.
to solve the problem, start with a number. Recursively find its prime factors, each becoming a child node. Repeat for each factor until reaching 1. The height of the tree is the maximum depth from the root n to any leaf (1). Use depth-first search (DFS) to determine this maximum depth.
In this round, basic self-introduction and verification were done.
Have you used SQL in your project?
Tip 1: Be honest about whether you have used the technology or not.
Tip 2: Provide the proper queries you have used.
It started with resume introspection and basic questions from it. then self-intro, projects done, knowing the level of skills written and ended with college group discussion.
Introduce yourself.
Tell me about your projects.

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