What is the value of GRID(5, 4) after the instructions corresponding to the following pseudocode are executed?

```
R = 1
DOWHILE R < 5
C = 2
DOWHILE C < 5
GRID(R, C) = R + C
C = C + 1
ENDDO
R = R + 2
ENDDO

```

a) 7
b) 8
c) 9
d) undefined

d) undefined

Computer Science & Information Technology

You might also like to view...

Describe an affiliate program and discuss the advantages of participating in an affiliate program, as both an advertiser and as a publisher. Name one affiliate management network, and describe what it does.

What will be an ideal response?

Computer Science & Information Technology

Every Java application program must have

a. a class named MAIN b. a method named main c. comments d. integer variables

Computer Science & Information Technology