Multiple choice Which of the following statements regarding tree data structure is false? A tree is a widely used abstract data type (ADT). A tree can be defined recursively. A walk in which the children are traversed before their respective parents are traversed is called a pre-order walk. An external node is any node that does not have child nodes. A tree is a connected acyclic graph. Reveal answer Fill a bubble to check yourself C Correct answer Explanation A walk in which the children are traversed before their respective parents are traversed is called a post-order walk.