Graphs - Study Mode
[#81] If a Graph Structured Stack contains {1, 2, 3, 4} {1, 5, 3, 4} {1, 6, 7, 4} and {8, 9, 7, 4}, what would be the source and sink vertices of the DAC?
Correct Answer
(C) Source - 1, 8 Sink - 4
[#82] For the given conditions, which of the following is in the correct order of increasing space requirement? i. Undirected, no weight ii. Directed, no weight iii. Directed, weighted iv. Undirected, weighted
Correct Answer
(A) ii, iii, I, iv
[#83] With V(greater than 1) vertices, how many edges at most can a Directed Acyclic Graph possess?
Correct Answer
(A) (V*(V-1))/2
[#84] MultiGraphs having self-loops are called PseudoGraphs?
Correct Answer
(A) True
[#85] Dijkstra's Algorithm will work for both negative and positive weights?
Correct Answer
(B) False