Tip 1: Revise the core subjects of computer science.
Tip 2: Focus on cloud computing and computer network fundamentals.
Tip 3: Have some knowledge about testing tools.
Tip 4: Have a better understanding of your projects.
Tip 1: Highlight your projects and the skills used in them.
Tip 2: Mention only the items that you have a better understanding of.
It was the first OA round in the afternoon at my institute.



A list of strings consisting of names followed by a space and Roman number, we need to sort the list on the basis of their sum equals name length and Roman value.
Ex: string s[] = {“John VII”, David V, John V, Henry VI, Henry IV};
Tip 1: Use a sorting algorithm having the best time complexity.



A 2D matrix is given and we need to eliminate the maximum element in each round.
Tip 1: The use of a stack for sorting the maximum element will be good.



Given a string having values from 0 to 9, we need to find the number of substrings in which the different characters occurred exactly k times.
Tip 1: The use of a hashing algorithm will be best here.
It was the second round in the afternoon at the Institute on next day after the first OA round.
~ Asked about myself.
~ Asked about my projects how I made those and the techs I used in them.
Tip 1: Introduce yourself nicely and clearly.
Tip 2: Explain your projects in detail, such as the idea behind each project, the problems faced during development, and how you tackled them.
~ Asked about the OOPs concept in C++.
~ Asked questions related to Data Structures, Computer Networks, Operating Systems, and DBMS.
Tip 1:Ensure clarity in your understanding of the OOPs concept in your primary language; mine is C++.
Tip 2: Be well-prepared with the fundamentals of computer science before the interview.
Tip 3:If you don't know the answer, please don't provide incorrect information. You can check it after the call.
It was the third round in afternoon at Institute. Hopefully I made it till here.
~ Asked about the low-level design of a shopping website like Flipkart.
~ Asked questions from git - commit, push, and pull.
Tip 1: Be prepared to discuss the low-level design of the projects mentioned on your resume.
Tip 2: Familiarize yourself with Git and GitHub.
~ Asked questions related to testing tools like Postman.
~ Asked about different types of requests we make from Postman.
~ Asked about how I have tested my projects after development.
Tip 1: Be prepared for the testing tools that you require for testing your projects.
Tip 2: Postman is the primary tool, have an understanding of how to use it.
It was the HR round in the evening at the Institute.

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