Complete the sentence to define a strongly connected component.
A strongly connected component is a subgraph where every vertex is reachable from [1] other vertices.
In a strongly connected component, every vertex can reach every other vertex.
Complete the sentence about the graph type where strongly connected components are defined.
Strongly connected components are defined only in [1] graphs.
Strong connectivity requires direction in edges, so it applies to directed graphs.
Fix the error in the statement about strongly connected components.
A strongly connected component is a subgraph where there is a path from every vertex to [1] other vertex.
The correct definition requires a path from every vertex to every other vertex, not just one.
Fill both blanks to complete the sentence about algorithms for strongly connected components.
Kosaraju's algorithm uses two [1] traversals and a [2] of the graph.
Kosaraju's algorithm performs two depth-first searches and reverses the graph edges.
Fill all three blanks to complete the sentence about Tarjan's algorithm.
Tarjan's algorithm uses a [1] to track nodes, assigns each node a [2], and updates a [3] value to find strongly connected components.
Tarjan's algorithm uses a stack, discovery times, and low-link values to identify strongly connected components efficiently.