Multiple choice

If PRCD(x, y) function gives TRUE operator and x has precedence over y, what is the output of the function PRCD(*, /)?

  1. TRUE

  2. FALSE

  3. Undefined

  4. None of these

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Multiplication (*) and division (/) have the same precedence level. In standard operator precedence evaluation, the function PRCD(x, y) returns true if x has higher precedence than y. Since they are equal, the function returns true if the system considers them equivalent or if the question implies left-to-right evaluation.