Discussion :: Microprocessors
-
Consider the following logical IF statement in FORTRAN 77
The above statement using arithmetic IF statement would be
IF (SALT. GE. PEPPER) GOTO 11
GOTO 13
A.
IF (SALT - PEPPER) 11, 11, 13
|
B.
IF (SALT - PEPPER) 13, 11, 13
|
C.
IF (SALT - PEPPER) 13, 11, 11
|
D.
IF (SALT - PEPPER) 11, 13, 13
|
Answer : Option C
Explanation :
The given statement is logical IF statement. If SALT greater than or equal to PEPPER control goes to statement 11 otherwise control goes to statement 13 Same is true of arithmetic IF statement (c). If (SALT - PEPPER) is negative, control goes to statement 13 and otherwise control goes to statement 11.
Be The First To Comment