Question

The pseudocode "if the hours worked are greater than or equal to 0 but less than or equal to 40" is coded as ____ in Visual Basic.
a. If decHours > 0 AndAlso decHours < 40
b. If decHours => 0 AndAlso decHours =< 40
c. If decHours >= 0 AndAlso decHours <= 40
d. If decHours >= 40 AndAlso decHours <= 0

Answer

This answer is hidden. It contains 1 characters.