Microprocessors - Engineering

Q1:

Consider the following DO statement in Fortran 77

DO 23 X = 10.0, 2.0

The number of DO loop executions in the above statement is

A 10

B 2

C 5

D zero

ANS:D - zero

Do loop will not be executed since 0 is less than 10.