Bellman-Ford Algorithm for Single Source Shortest Path
What is the primary purpose of the Bellman-Ford algorithm?
What is the time complexity of the Bellman-Ford algorithm?
Which type of edge weights can the Bellman-Ford algorithm handle that Dijkstra's algorithm cannot?
In the standard (naive, without early termination) Bellman-Ford algorithm, how many times are all edges relaxed?
In the Bellman-Ford algorithm, what does 'relaxing an edge' mean?
What happens if you run one more iteration (the V-th iteration) after the standard V-1 iterations?
If a graph has 6 vertices and 10 edges, what is the maximum number of edge relaxation operations performed by Bellman-Ford?
Consider a graph with edges: A→B (weight 5), B→C (weight -3), C→D (weight 2), A→D (weight 8). Starting from A, what is the shortest distance to D?
Which statement about negative weight cycles is TRUE?
What is the initial distance assigned to the source vertex in Bellman-Ford?