What does the below definations convey? i. A binary tree is balanced if for every node it is gonna hold that the number of inner nodes in the left subtree and the number of inner nodes in the right subtree differ by at most 1. ii. A binary tree is balanced if for any two leaves the difference of the depth is at most 1.

Correct Answer: weight balanced and height balanced tree definations
They are the definations of weight and height balanceness. height balanced trees wont convey weight balanceness but opposite can be true.