Tip 1: Know the concepts of your programming language.
Tip 2: Prepare a good introduction.
Tip 3: Revision is a must.
Tip 1: Prepare everything you mentioned in your resume.
Tip 2: Keep your resume well-structured and use a standard template.
This round was conducted in different time slots. My time slot was 3:00-6:00 PM. The test two sections: the first one has three subsections: Verbal Ability (20 Questions), Logical Reasoning (20 questions) and Quantitative Ability (20 Questions). The second one has two subsections: Advanced Quantitative and Reasoning Ability (30 questions) and two coding questions.



N = A^3 + B^3.
1. A should be greater than or equal to one (A>=1).
2. B should be greater than or equal to zero (B>=0).
3. (A, B) and (B, A) should be considered different solutions, if A is not equal to B, i.e (A, B) and (B, A) will not be distinct if A=B.
Using the mathematical formula.



Given ‘N’ = 4, ‘Q’ = 1.
Then the answer is 10 because the sum of all integers between 1 and 4 are 1, 2, 3, and 4. Hence 1 + 2 + 3 + 4 is equal to 10.
First, store the values in data structures. Then, perform the calculation and print the answer. Make sure you know how to take inputs and which data structure to choose, because when we practice on coding platforms, we don’t need to do it, so it becomes out of habit.
Various questions were asked, including concepts of React JS, Operating Systems, SQL, C++, Java, and topics from the projects mentioned in the resume. The managerial round was also included in this stage.



• The reference to the head of the linked list is not given.
• The node to be deleted is not a tail node.
• The value of each node in the Linked List is unique.
• It is guaranteed that the node to be deleted is present in the linked list.

I provided the standard solution. The pen and paper were given.
Write a query to select only unique values from the department column in the employees table.
How can you retrieve rows from a table where the salary is greater than 5000?
Tell us about Joins. (Learn)
Write a query to find the employee with the highest salary in the employees table using a subquery.

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