Choose the correct description of Binary tree.
- A. A structure that stores elements in contiguous memory locations, allowing constant-time indexed access.
- B. A linear data structure that follows the First-In-First-Out (FIFO) principle.
- C. A linear data structure that follows the Last-In-First-Out (LIFO) principle.
- D. A tree data structure in which each node has at most two children. ✓
Correct answer
D. A tree data structure in which each node has at most two children.
Explanation
Binary tree refers to a tree data structure in which each node has at most two children.