What is the output of the following program?

```
count = 5;
while (count > 0) {
print(“Woot! ”);
count -= 1;
}
```

Woot! Woot! Woot! Woot! Woot!

Computer Science & Information Technology

You might also like to view...

An operating system must be designed such that ________.

a) context-switching time is maximized b) context switches are transparent to processes c) as many “useful” computations as possible are performed while switching contexts d) all of the above

Computer Science & Information Technology

if (examScore is less than 50)display message "Do better on next exam" The result of the expression above is ____.

A. true or false B. true C. numeric D. 100

Computer Science & Information Technology