Write the pseudocode for below problem

Compute the average grade on a quiz for a class of any number of students.


```
LET sum = 0
LET count = 0
INPUT grade
DO WHILE grade < 9999
LET sum = sum + grade
LET count = count + 1
INPUT grade
LOOP
IF count > 0 THEN
LET average = sum / count
OUTPUT "The quiz average is ", average
ELSE
OUTPUT "There is no data to average"
END IF
```

Computer Science & Information Technology

You might also like to view...

A(n) ________ is a continuously scrolling list of your friends' activities on the Facebook site

Fill in the blank(s) with correct word

Computer Science & Information Technology

?References to images appear in HTML code using the tag.

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

Computer Science & Information Technology

One method of reducing the space a file takes up on your disk is called file ________.

a. extract b. shorten c. archive d. compression

Computer Science & Information Technology

The .info file extension is associated with U.S. government Web sites. ____________________

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

Computer Science & Information Technology