Tip 1 : Prepare Data Structure
Tip 2 : At least 2 good project in development
Tip 1 : At least 2 project in resume
Tip 2 : please mention your coding profiles
Coding Round to check DSA knowledge









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

DSA + java



‘ARR1’ = [3 6 9 0 0]
‘ARR2’ = [4 10]
After merging the ‘ARR1’ and ‘ARR2’ in ‘ARR1’.
‘ARR1’ = [3 4 6 9 10]
Diff b/w list and linked list?
Design Stack and queue from starting
Where we use linked list in real life
Why linked list exists?
Project explanation only no questions from project
1. what is @RestMapping?
2. how to connect with 2 db at a same time?
3. what is actuators?
4. @Autowired?

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?