Ask Question
25 January, 08:10

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

+2
Answers (1)
  1. 25 January, 11:09
    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?
Get 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 & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers