Ask Question
6 December, 05:17

Using the flowchart above, which decision statement will correctly check that hoursWorked is greater than or equal to the FULL_WEEK constant?

a.

hoursWorked > = FULL_WEEK

b.

hoursWorked > FULL_WEEK

c.

hoursWorked = = FULL_WEEK

d.

hoursWorked! = FULL_WEEK

+4
Answers (1)
  1. 6 December, 09:12
    0
    hoursWorked > = FULL_WEEK

    Explanation:

    The operator sign and meaning:

    > means greater than

    < means less than

    = equal sign

    ! means NOT operator

    = = means equal equal sign

    Option a: hoursWorked > = FULL_WEEK

    It means hoursWorked is greater than or equal to FULL_WEEK.

    Option b: hoursWorked > FULL_WEEK

    It means hoursWorked is greater than to FULL_WEEK.

    Option c: hoursWorked = = FULL_WEEK

    It means hoursWorked is equal equal to FULL_WEEK.

    Option d: hoursWorked! = FULL_WEEK

    It means hoursWorked is not equal to FULL_WEEK.

    Therefore, Option a is the correct option.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Using the flowchart above, which decision statement will correctly check that hoursWorked is greater than or equal to the FULL_WEEK ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers