In the procedure Mystery written below, the parameter number is a positive integer greater
than 1
PROCEDURE Mystery (number)
REPEAT UNTIL (number ¿ 100)
number - number * number
1
IF (number = 100)
RETURN (true)
ELSE
RETURN (false)
Which of the following best describes the result of running the Mystery procedure? (A) The procedure returns true when the initial value of number is less than 100, and
otherwise, it returns false (B) The procedure returns true when the initial value of number is 10, and otherwise, it returns
false (C) The procedure returns true when the initial value of number is 100, and otherwise, it
returns false (D) The procedure returns true when the initial value of number is either 10 or 100, and
otherwise, it returns false