Tip 1 : Practice through Samsung archive for advance test
Tip 2 : Do projects mentioned on your resume by your heart
Tip 3 : Have in depth knowledge of Operating System and computer networking with concepts of object Oriented programing
Tip 1 : Do projects mentioned on your resume by your heart
Tip 2 : As I have told, have in depth knowledge of Operating System and computer networking.
Tip 3 : Make the project with concepts of Object Oriented Programming and showcase the same
Timing : Can be chosen by you but it was on weekdays only



The graph has no self-edges, no parallel edges.
The graph may not be connected.
A graph is bipartite if the nodes of the graph can be partitioned into two independent sets A and B such that every edge in the graph connects a node in set A and a node in set B.
If ‘N’ = 4, ‘M’ = 5, edgeList = [ [0, 1],[0, 3],[1, 2] ].

Here, you can see that the graph is bipartite as we can divide the nodes in two sets as follows:
setA = [0, 2].
setB = [1, 3].
In the graph, you can see that every edge in the graph connects a node in set A and a node in set B.
Hence, the output is “Yes”.
I used bfs for solving
I made an visited map also
I took the input of graph assigned color as bool variable
1 for black and 0 for white
I kept on running bfs by changing colour in every round. If colour are same then I printed -1



In the given linked list, there is a cycle, hence we return true.

Traverse the list one by one and keep putting the node addresses in a Hash Table. At any point, if NULL is reached then return false, and if the next of the current nodes points to any of the previously stored nodes in Hash then return true.
Very simple questions were asked from C and C++ Language
Tip 1 : Strengthen your basics of C++
Tip 2 : Don't ignore the theory section
Tip 3 : Take a look at the important topics time to time
Timing and day one can choose but not on weekends. Environment was google meet remotely only
Tip 1 : Just be yourself
Tip 2 : Speak the truth
Tip 3 : Don't hesitate while speaking, try to be as much fluent as you can

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?