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
b) 1
Computer Science & Information Technology
You might also like to view...
What is the correct way to create a hanging indent?
What will be an ideal response?
Computer Science & Information Technology
Identify the method associated with browser locations that can find the protocol, hostname, and port number of the URL.
A. location.pathname B. location.hash C. location.origin D. location.search
Computer Science & Information Technology