Well I have a theory please verify this:
Assumption: external nodes are leaf nodes.
when I will have completely filled tree having all leaf nodes at every level. If I have n external nodes implies I will be having n-1 internal nodes. This means my height of the tree should be = log(total nodes) = log(n+n-1) = log(2n-1) hence if there are n external nodes EPL will be nlog(2n-1).
option B says >= nlog(n) one might think it is true as nlog(2n-1) > nlogn hence option B is correct but wait!!
Theory to reach above conclusion:
lets say I have a complete filled binary tree( it has all leaf nodes) and if there are total of n nodes then,
Leaf nodes = $\frac{n+1}{2}$ then non-leaf nodes becomes i.e. internal nodes = $\frac{n+1}{2} - 1$
so Height of the tree:
= log($\frac{n+1}{2}+\frac{n+1}{2} - 1)$
= log($\frac{n}{2}+\frac{n}{2}+\frac{1}{2}+\frac{1}{2}-1)=log(n)$.
Hence I can say for given n nodes where it has (n+1)/2 leaf nodes and (n+1)/2-1 internal nodes will have height equal to log(n).
C. becomes false no need of reason
D. If we consider skew tree it will have external node = 1 we can't determine how many internal nodes it has at this point, but if we consider a tree which is left skew having only 2 nodes. we know EPL becomes 1. hence I can say for n=1 my EPL = 1 which satisfies option D for some special trees.
If that some special trees option is not there there could be a problem as there is no way of Identifying how many internal node a tree can have. for external node n = 1, I can even have internal node = 1000, this tells me my first A is wrong.
You can argue me with the point then why I derive nlog(2n-1)? remember its base condition was it is fully complete binary tree having present all leaf nodes at last level. It helps me to visualize EPL at balanced tree condition. If I assume it to be a skew tree then I don't think it is possible to determine the number of internal node it can have. Option B says less than or equal to nlogn. I don't have any proof here but I tried with certain value of n and it turns out option B is valid. for B only conclusion I was able to derive is it will satisfy whenever tree is balenced as nlogn < nlog(2n-1) and again for skew trees it satisfies.
So according to me option B and D should be true.
Please validate the above theory.