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




For the above-linked list, if k=2, then the value at the kth i.e second node from the end is ‘12’.
1.You don’t need to take any input. It has already been taken care of. Just implement the given function and return a pointer pointing to the k-th element from the last of the linked list.
2.It is guaranteed that k<=size of the linked list.
It can be solved by fast pointer and slow pointer approach



For the trees given below:-

The given trees are identical as:-
1. The number of nodes in both trees is the same.
2. The number of edges in both trees is the same.
3. The data for root for both the trees is the same i.e 5.
4. The data of root -> left (root’s left child) for both the trees is the same i.e 2.
5. The data of root -> right (root’s right child) for both the trees is the same i.e 3.
6. The data of root -> right -> left ( left child of root’s right child) for both the trees is the same i.e 6.
7. Nodes with data 2 and 6 are the leaf nodes for both the binary trees.
you can check level order traversal for both trees
Was asked to design Google Meets
Tip 1: Practice HLD and LLD on some commonly asked designs
Tip 2: You should know about basics like Caching, CAP Theorem
What is the purpose of normalization in DBMS?
Explain the concepts of a Primary key and a Foreign Key.
What are the main differences between the Primary key and the Unique Key?
What is the use of the DROP command and what are the differences between DROP, TRUNCATE and DELETE commands?
Basic SQL Queries
Tip 1 : You have to focus on CS Fundamentals - OS, OOPS, DBMS, CN
Tip 2 : Solve SQL Queries from HackerRank
What are the different states of the process?
What are the differences between process and thread?
What is the basic function of paging?
What is caching?
Tip 1 : You have to focus on CS Fundamentals - OS, OOPS, DBMS, CN
Tip 2 : Solve SQL Queries from HackerRank

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