Tip 1 : Practice problem topic wise
Tip 2 : 2 project with overview explanation , need not to dive much
Tip 3 : Practice interviews problems from Coding Ninja or some platform
Tip 1: Have projects
Tip 2: It better to have skillset defined that plays an important role in interviews
The Test was conducted in the evening 4 o'clock



You are given ‘ARR’ = [5, 2, 3]
In the first step, you can change 5 to 3, so the new array is [3, 2,3].
In the second step, you can change the 3 to 2, then the array is [2, 2,3].
In the third step, you can change the 3 to 2, then the array is [2, 2, 2]
Hence the answer is 3.
The main catch in this round was that students had to write their own test cases using google’s library ‘gtest.h’. As I have solved the question with the help of DP.
It happened somewhere around 10 in morning . It was conducted on the Google meet



For the given binary tree

The level order traversal will be {1,2,3,4,5,6,7}.
As it was a simple Traversal problem in Tree . I could solve in one go . She asked me to just write the function
I used the same approach as here
It was conducted at around 12 o clock in the morning.



Input: linked list = [1 2 3 4] , k = 2
Output: 3 4 1 2
Explanation:
We have to rotate the given linked list to the right 2 times. After rotating it to the right once it becomes 4->1->2->3. After rotating it to the right again, it becomes 3->4->1->2.
I had solve this quetion on Code studio platform itself . So used the same approach as given here
Find the length of the Linked List to check whether the ‘K’ is greater than the Length of the Linked List or not. Take a modulo of ‘K’ with its length if it is greater than the length. Reach the (‘K’+1)th node from last and change the pointers of nodes to get a rotated Linked List.
write a SQL query to find second highest salary.
Tip 1: SQL basics
Tip 2: frequently asked queries
Tip 3: Important CS concepts
It was around in the evening . As HR informed me in the noon that I will have HR round in the evening .
All the basic HR interview questions like about you , why should we hire you , Strength weakness , what do you know about the company etc
Tip 1: prepare your answer beforehand
Tip 2: Be confident , that what they are looking for
Tip 3: Be polite

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?