A.Function F1(b As Integer)If b Mod 2=0 ThenReturn 0ElseReturn 1End IfEnd Function B.Function F1(b As Integer)If b Mod 2=0 ThenF1=0ElseF1=1End IfEnd Function C.Function F1(b As Integer)If b Mod 2=0 ThenF1=1ElseF1=0End IfEnd Function D.Function F1(b As Integer)If b Mod 2<>0 ThenReturn 0ElseReturn 1End IfEnd Function