Working overtime is defined as having worked more than 40 hours during the week. Given the variable hoursWorked, write an expression that evaluates to true if the employee worked overtime.
LANGUAGE: Visual Basic
CHALLENGE:
Working overtime is defined as having worked more than 40 hours during the week. Given the variable hoursWorked, write an expression that evaluates to true if the employee worked overtime.
SOLUTION:
hoursWorked > 40
Posted in Learn To Code, Visual Basic