Tip 1 : Practice writing sql queries
Tip 2 : Have good communication skills
Tip 1 : Mention few projects
Tip 2 : Have well written resume
Basic english test and then a coding question was asked



If the given graph is :

Then the edge between 0 and 4 is the bridge because if the edge between 0 and 4 is removed, then there will be no path left to reach from 0 to 4.and makes the graph disconnected, and increases the number of connected components.
There are no self-loops(an edge connecting the vertex to itself) in the given graph.
There are no parallel edges i.e no two vertices are directly connected by more than 1 edge.
Tip 1 : Read the problem carefully
Tip 2 : Make sure you don't miss any point
It was around 2 pm
The exam environment was pretty good
There was presence of 3-4 mentors



If a string has 'x' repeated 5 times, replace this "xxxxx" with "x5".
The string is compressed only when the repeated character count is more than 1.
Consecutive count of every character in the input string is less than or equal to 9. You are not required to print anything. It has already been taken care of. Just implement the given function and return the compressed string.
Held at 7 pm

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?