In the program below, the initial value of x
is 5 and the initial value of y
is 10.
- IF (x < 0)
- {
- DISPLAY ("Foxtrot")
- }
- ELSE
- {
- IF (x > y)
- {
- DISPLAY ("Hotel")
- }
- ELSE
- {
- IF (y > 0)
- {
- DISPLAY ("November")
- }
- ELSE
- {
- DISPLAY ("Yankee")
- }
- }
- }
What is displayed as a result of running the program?