Tip 1 : Definitely practice DSA.
Tip 2 : Do some basic development.
Tip 3 : Be ready to explain your projects.
Tip 1 : Don't clutter skills section.
Tip 2 : To the point and precise.
The online round was conducted on HackerEarth around 11:30 PM. This round consisted of an online coding and MCQ section, which included 15 MCQs with a scoring system of +4 for correct answers and -1 for incorrect ones, and 3 coding questions—two worth 10 marks each and one worth 20 marks. The MCQs ranged from easy to medium difficulty and covered topics such as Networks, OOPS, DBMS, and C++/Java. In the coding section, one 20-mark question was of medium difficulty, while the two 10-mark questions were easy. With regular practice, you can easily score 20 out of 40 marks in the coding section by solving the two 10-mark questions.



(a, b) -> (a + b, b)
(a, b) -> (a, a + b)
For the coordinates, source point = (1, 1) and destination point = (3, 5)
The output will be true as the destination point can be reached using the following sequence of moves:
(1, 1) -> (1, 2) -> (3, 2) -> (3, 5)
Applied DFS concept



Dynamic Programming concept. (Learn)



1. The heights of the buildings are positive.
2. Santa starts from the cell (0, 0) and he has to reach the building (N - 1, M - 1).
3. Santa cannot leave the grid at any point of time.
BFS approach. (Learn)
This round mainly focusses on your DSA, DBMS, OS Networking and coding skills like how optimized you can write code
This round was conducted on Zoom.
There were 2 interviewers and both of them were very calm and supportive.
Difference between Array List and Arrays. (Learn)
What is HashMap and how it works and what data structures are there in it? (Learn)
Difference between DELETE DROP and TRUNCATE. (Learn)
What type of Data Structure is used in Dictionary and why? (Learn)
Explain queues using stack or stack using queues. (Learn)
Explain Inheritance and Encapsulation. (Learn)
What is hidden when URL is sent to the browser? (Learn)
Difference between http and https. (Learn)



Two pointer concepts. (Learn)
How many pieces would there be if we are to cut a cake only three times?
On the same day, the HR round was conducted. There were two interviewers, both of whom were quite good and frank. This round mainly focused on basic resume questions and 'tell me about yourself' topics.
Introduce yourself.
Why are you a good fit for the company?
Are you trying anywhere else?
Tip 1 : Don't copy the projects from net.
Tip 2 : Explain everything clearly and honesty.

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