YOU may join our Telegram for all subjects PDF BOOKS.
https://t.me/+Ccx9McEia7wyODg1
Bellman-Ford Algorithm Multiple choice Questions and Answers (MCQs)
Question 1 [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER] |
The Bellmann Ford algorithm returns ..... value.
Boolean | |
Integer | |
String | |
Double |
Question 1 Explanation:
The Bellmann Ford algorithm returns Boolean value whether there is a negative weight cycle that is reachable from the source.
Question 2 [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER] |
Bellmann ford algorithm provides solution for ..... problems.
All pair shortest path | |
Sorting | |
Network flow | |
Single source shortest path |
Question 2 Explanation:
Bellmann ford algorithm is used for finding solutions for single source shortest path problems. If the graph has no negative cycles that are reachable from the source then the algorithm produces the shortest paths and their weights.
Question 3 [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER] |
Bellmann Ford algorithm is used to indicate whether the graph has negative weight cycles or not.
True | |
False |
Question 3 Explanation:
Bellmann Ford algorithm returns true if the graph does not have any negative weight cycles and returns false when the graph has negative weight cycles.
Question 4 [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER] |
How many solution/solutions are available for a graph having negative weight cycle?
One solution | |
Two solutions | |
No solution | |
Infinite solutions |
Question 4 Explanation:
If the graph has any negative weight cycle then the algorithm indicates that no solution exists for that graph.
Question 5 [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER] |
What is the running time of Bellmann Ford Algorithm?
O(V) | |
O(V2) | |
O(ElogV) | |
O(VE) |
Question 5 Explanation:
Bellmann Ford algorithm runs in time O(VE), since the initialization takes O(V) for each of V-1 passes and the for loop in the algorithm takes O(E) time. Hence the total time taken by the algorithm is O(VE).
There are 5 questions to complete.