Are you sure you're getting this? Fill in the missing part by typing it in.
A binary tree is a type of tree data structure in which each node can have at most ____ children.
- Options: 1, 2, 3, 4
Explanation: In a binary tree, each node can have at most two children, referred to as the left child and the right child. This property differentiates binary trees from other types of trees.
Write the missing line below.