Home / ECE / Microprocessors :: Discussion

Discussion :: Microprocessors

  1. Consider the following DO statement in FORTRAN 77

    DO 25 J = 1, 7

    The number of DO loop executions in the above statement is

  2. A.
    7
    B.
    6
    C.
    1
    D.
    8

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    Do statement is executed when J = 1, 2, 3, 4, 5, 6, 7, i.e., a total of 7 times.


Be The First To Comment