Discussion :: Microprocessors
-
Consider the following DO statement in FORTRAN 77
The number of DO loop executions in the above statement is
DO 25 J = 1, 7
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