Assume that a and b are Integer variables.
i. If a And b Then Call DoSomething()
ii. If (a And b) = b Then Call DoSomething()
Statements (i) and (ii) are equivalent. True or False?
I thought this was a no-brainer, but apparently not. This is often the source of many bugs in VB code.
So how many of you think the answer is True? ;-)