What is the value of GRID(3, 3) 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) 5
b) 6
c) 7
d) none of the above
b) 6
You might also like to view...
The items in a ListBox can be listed in alphabetical order by setting the property ___________ to true.
a) Sorted b) AlphaSort c) ListSort d) None of the above.
Answer the following statements true (T) or false (F)
1. When included in the Text property of a button, the && symbols placed side by side will display as a single & character. 2. When you declare a constant, you must assign it an initial value. 3. A form’s Load event takes place when the user first clicks on the form at run time. 4. A variable is a storage location on a computer’s hard drive that holds information while the computer is off.
Answer the following statements true (T) or false (F)
1. vi lets you move lines from one place in your file to another. 2. The vi editor uses 9 temporary buffers named 1 to 9. 3. The contents of the numbered buffers are out of your reach. 4. The alphabetic buffers and numbered buffers are the same buffers named differently. 5. Line numbers produced by number option become part of your text.
Graphics add visual interest to a document
Indicate whether the statement is true or false