Step 1: DFS root property.
In a Depth First Search (DFS) traversal of an undirected graph, the root of the DFS tree is an articulation point
if and only if it has two or more children.
Therefore, statement (B) is correct.
Step 2: Verification of remaining statements.
Statement (A): Incorrect, because the DFS root can be an articulation point under the condition stated above.
Statement (C): Incorrect, since removing a leaf node from a DFS tree does not disconnect the graph.
Statement (D): Incorrect, because the existence of back edges can provide alternate paths, preventing disconnection even if a vertex is removed.
Final Conclusion:
The only correct option is (B).