Questions: Trees and Forest Structures

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A graph has 10 vertices, 9 edges, and no cycles. What can you conclude?

ANothing — you need to verify connectivity before drawing conclusions
BIt is a tree: connected, acyclic, and has exactly n−1 edges
CIt is a forest with at least two components, since acyclic graphs with n−1 edges are never connected
DIt must have at least one vertex of degree 0 (an isolated vertex)
Question 2 Multiple Choice

You have a tree on n vertices and you add exactly one new edge between two existing vertices. What is the result?

AThe graph becomes disconnected, since adding edges can split components
BThe graph gains exactly one cycle, while remaining connected
CThe graph may or may not gain a cycle, depending on which vertices are connected
DThe graph becomes a forest with two trees
Question 3 True / False

Removing any single edge from a tree always results in exactly two connected components.

TTrue
FFalse
Question 4 True / False

A rooted tree has fundamentally different graph-theoretic properties than an unrooted tree — different edge counts, connectivity, and structural constraints.

TTrue
FFalse
Question 5 Short Answer

Why is it impossible to add an edge to a tree without creating a cycle?

Think about your answer, then reveal below.