Question: In a binary tree, how many edges are there if there are n nodes?
Options:
Correct Answer: n-1
Solution:
In a binary tree, the number of edges is always one less than the number of nodes, hence there are n-1 edges for n nodes.