Time Left - 15:00 mins

Graph Traversal lI Starter Quiz

Attempt now to get your rank among 81 students!

Question 1

Which of the following tree traversal technique is not based on depth first search?

Question 2

Time Complexity of Breadth First Search is? (V – number of vertices, E – number of edges)

Question 3

Which of the following is not one of the applications of Breadth-first search(BFS)?

Question 4

Consider the following graph:

Which of the following is not a depth first search traversal of the given graph?

Question 5

Consider the following graph:

What is the depth first search (DFS) sequence for the above graph?

Question 6

Consider the following graph:

Which of the following is NOT a valid BFS traversal order?

Question 7

Consider the following graph G.


Modified BFS traversal on G applied as follows
Assume starting vertex is ‘a’.
At any level (breadth), vertices are visited in alphabetic order.
In above graph G, after visiting vertex ‘a’, the order of vertices visited in G are c, d and e.
It works same as BFS except the restriction on order of vertices visited.
Which of the following is not a cross edge during given BFS traversal on G?
  • 81 attempts
  • 0 upvotes
  • 2 comments
Jul 21GATE & PSU CS