Each round, which node gets settled?
- The farthest unsettled node
- A random unsettled node
- The nearest unsettled node
At the start of Dijkstra, what distance does the start node hold?
- Infinity
- 0
- The largest weight
What does relaxing an edge to a neighbour mean?
- Keep the smaller of the old and via distances
- Delete the neighbour from the graph
- Double every weight on the path
One route costs 50 plus 50. Another costs 10 plus 10 plus 10. What is the cheaper total?
Answer: ______________
Why can a settled node never be improved later?
- Settled rows are deleted at once
- Any rival detour already costs at least as much
- Weights turn negative after settling
Breadth first search is the wrong tool when edges carry different costs.
Circle one: True False
A student settles the farthest node first to finish sooner. What is wrong?
- Settling must go nearest first to stay safe
- Farthest nodes are never reachable
- Tables are banned from the method
Two hops cost 100 total and three hops cost 30 total. Which route wins?
- The two hop route, fewer hops always wins
- Neither, hop counts must match
- The three hop route, cheaper cost wins