Questions: Strongly Connected Components

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

Vertex v in a digraph has no outgoing edges and no self-loop. What is v's strongly connected component?

Av is part of the SCC containing all vertices that can reach v
Bv forms a trivial SCC containing only itself
Cv cannot be part of any SCC because it has no outgoing edges
Dv belongs to whichever SCC has a vertex with an edge pointing to v
Question 2 Multiple Choice

Why is the condensation digraph (the DAG formed by collapsing each SCC to a node) always acyclic?

ABecause DFS on the reversed graph processes SCCs in topological order
BBecause the original digraph has no cycles, only directed paths
CBecause if two SCCs had a cycle between them, all their vertices would mutually reach each other, making them one SCC — contradicting maximality
DBecause each SCC has a unique finish time in Kosaraju's algorithm
Question 3 True / False

In a strongly connected digraph, every pair of vertices can reach each other via directed paths.

TTrue
FFalse
Question 4 True / False

If vertices u and v are in the same strongly connected component, there should be a direct edge from u to v and from v to u.

TTrue
FFalse
Question 5 Short Answer

Explain why the condensation of a digraph is always a DAG, and why this property is useful.

Think about your answer, then reveal below.