Look at each of the following code segments. What value will the If...Then...Else statements store in the variable intY?
a.intX = 0If intX < 1 ThenintY = 99Else intY = 0End Ifb. intX = 100If intX <= 1 ThenintY = 99ElseintY = 0End Ifc. intX = 0If intX <> 1 ThenintY = 99Else intY = 0End If