The simplest form of Tree is a Binary Tree
Binary Tree Consists of
Node (called the ROOT node)
Left and Right Sub-trees
Both sub-trees are binary trees
The nodes at the lowest levels of the tree are called leaves
If A is the root of a binary tree and B is the root of its left/right subtree then
A is the father of B
B is the left/right son of A