Tip 1 : Practice competitive coding questions and cover basic and easy level questions.
Tip 2 : Also practice the sql queries. Don't skip basics.
Tip 3 : Projects play a very important role. Include good projects in your Resume.
Tip 1 : Don't overload your Resume. Keep it simple.
Tip 2 : Use a good format
Tip 3 : Include only those projects and techs that you are aware of.
The online round consists of :
2 Programming questions
12 Multiple Choice questions
The level of questions were easy to medium.
The platform was quite user friendly
For the given binary tree: [1, 2, 3, -1, -1, 4, 5, -1, -1, -1, -1]
Start Node: 3
1
/ \
2 3
/ \
4 5
Output: 2
Explanation :
In the zeroth minute, Node 3 will start to burn.
After one minute, Nodes (1, 4, 5) that are adjacent to 3 will burn completely.
After two minutes, the only remaining Node 2 will be burnt and there will be no nodes remaining in the binary tree.
So, the whole tree will burn in 2 minutes.
It was in interview on Zoom with webcam on.
The interviewer covered all the basic concepts like OOPS, SQL, Database, Java.
Coding questions were asked. only logic was asked.
If any character is a ‘?’ we can replace that character with any other character.
If a character is a * we can replace * with any sequence of characters including the empty sequence.
Let str = “abc?" and pat= “abcd”
We return true as ‘?’ can be replaced with ‘d’ and this makes ‘str’ and ‘pat’ same.
It was the final round.. Interview started with the concepts of Java ( String in Depth, Garbage Collection, Interfaces, Abstract Classes). Then he moved to projects that were there in my Resume.
He covered all the tech Stacks mentioned in my Resume.
Also he asked the coding questions and asked to write the pseudo code for it.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which SQL keyword removes duplicate records from a result set?