Another way to approach this problem in terms of ODD and EVEN.
Given : \(2^{98}=256L+N\)
==> \(2^{98}=2^8L+N\) .Now , Left hand expression is EVEN and we know E+E or O+O only gives output as EVEN But since L is multiplied by 2^8 so ODD+ODD case is not possible.
Now , N can take only even values i.e. 0,2,4
If we Put N=2 then one 2 from N and L will cancel out from Right and Left side leaving below expression :
\(2^{97}=2^7L+1\)
But then Right side expression will give ODD value which is incorrect.Same is the case with N= 4 .
So only possible value is 0 .
Ans A