I used table method to solve this Q(although was not easy at first). I believe when 2 variables are involved, a table works everytime- a table like the one which we make for finding X and Y by plugging values as we do for some Coordinate geometry Questions. In that way a pattern becomes quite clearer.
Now, we have 2 constraints - 1) 2<=a<=200 and 2) a+b > a^b
lets Take a = 2, then 2+b > 2^b ---> b > 2^b - 2 --> possible only when b = 0 or 1. and if we keep taking all values of a from 2 to 200, and we keep b first as 0 and then as 1, we get 199+199 pairs. no other positive value of b satisfies our constraint 2.
next, coming to negative values of b,we see that if b = -1, it is acceptable for all values of a from 2 to 200, thus again, 199 pairs are possible. so total will become 199+199+199 => UNIT DIGIT =7
But if we move a little more on negative side, eg b= -2, the values of a for which constraint 2 will hold will start from 3. thus the pairs that we will now have are b = -2 and a from 3 to 200. therefore 1 less pair, hence 198 pair.
Similarly as we keep moving 1 point towards negative for b, the acceptable values of a keep on decreasing. thus until b = -199, we have a = 200 that will be the last pair..
so in this way we will have a series of Numbers of pairs = 198, 197,196,195....1 and hence the sum via AP will be 199(99) => will have 1 as the UNIT DIGIT. and above we had a unit digit of 7. Thus 7 + 1 =>8 as the unit digit of sum.
Only B and E have those but B is quite small if you look at the sum of AP (199*99)...
Thus correct Ans. is E.
It looks like a complex process but is quite simple and useful when 2 variables are involved, and thus helps make it more clear and organized when it is done via a table. Hope it helps!