If the value input for START is 8, how many times will the instructions within the loop below be executed?

```
Read START
COUNT = START
DOWHILE COUNT > START
COUNT = COUNT - 1
Write COUNT
ENDDO


```

a) 0
b) 1
c) 8
d) infinite


a) 0

Computer Science & Information Technology

You might also like to view...

During run time, you can determine whether a check box is selected or unselected by looking at the value in its Checked property.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

A ________ is a combination of formatting options that can be applied to a shape or graphic

A) Quick Style B) template C) selection net D) theme

Computer Science & Information Technology

To simplify operations such as insert and delete, you can define the class to implement the node of a linked list as a struct.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

A declaration statement that specifically contains the word ____ is different from every other declaration statement in that it does not cause the creation of a new variable by reserving new storage for the variable.

A. auto B. static C. extern D. register

Computer Science & Information Technology