Home / ECE / Microprocessors :: Discussion

Discussion :: Microprocessors

  1. Consider the following logical IF statement in Fortran 77

    IF (SALT. LE. PEPPER) 11
    GO TO 13

    The above statement using arithmetic IF statement would be

  2. A.
    IF (SALT - PEPPER) 11, 11, 13
    B.
    IF (SALT - PEPPER) 13, 11, 11
    C.
    IF (SALT - PEPPER) 13, 13, 11
    D.
    IF (SALT - PEPPER) 11, 13, 13

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    The logical IF statement means that IF SALT is less than or equal to PEPPER, control goes to statement 11 otherwise (i.e., SALT greater than PEPPER), control goes to 13 Same is true of arithmetic IF statement (a).


Be The First To Comment