Multiple choice technology mainframe IF "HI" = "hi" THEN SAY "YES" ELSE SAY "NO" Result : YES True False Reveal answer Fill a bubble to check yourself B Correct answer Explanation In REXX, string comparison is case-sensitive by default. The literal "HI" (uppercase) does not equal "hi" (lowercase), so the condition is false. The ELSE branch executes, outputting "NO", not "YES". Therefore the statement "Result: YES" is False.