Tip 1 : Go through the basics of DSA and algo
Tip 2 : Go deep in tech stack related questions like Spring boot , kafka
Tip 3 : Show certifications in profile
Tip 1 : Keep professional certificates
Tip 2 : Keep it short
Show the working of graph BFS traversal in notepad.



The traversal should proceed from left to right according to the input adjacency list.
Adjacency list: { {1,2,3},{4}, {5}, {},{},{}}
The interpretation of this adjacency list is as follows:
Vertex 0 has directed edges towards vertices 1, 2, and 3.
Vertex 1 has a directed edge towards vertex 4.
Vertex 2 has a directed edge towards vertex 5.
Vertices 3, 4, and 5 have no outgoing edges.
We can also see this in the diagram below.
BFS traversal: 0 1 2 3 4 5

Show them the graph and apply the logic to go with top to bottom approach
Explain the architecture of spring environment.
Explain the architecture of spring environment.
Had a call with Manager and had managerial round questions.
Why do you want to change the job? Are you ok to with 12-9 shift.
Tip 1: Be yourself and give genuine reasons
Salary Discussion
Salary discussion

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?