Write the pseudocode for below problem

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


```
INPUT grade! INPUT grade2 INPUT grade3 INPUT grade4 LET sum = gradel + grade2 + grade3 + grade4
LET average = sum / 4
OUTPUT average
```

Computer Science & Information Technology

You might also like to view...

You should use the _____ data type for fields that contain words and symbols of up to 255 characters in length.

A. Short Text B. Long Text C. Number D. AutoNumber

Computer Science & Information Technology

Each of the following lines of code purport to round the results of the division of doubles to the nearest integer value (but still of type double). All are correct C++ code but some do not round correctly. Tell which rounds down, up, or to the nearest integer value, or is not reasonable Assume that math.h has been included, and that all variables have appropriate values.

double x, y, z; a) ``` z = ceil(x/y);a) ``` b) ``` z = ceil(x/y-0.5); ``` c) ``` z = floor(x/y-0.5); ``` d) ``` z = floor(x/y+0.5); ``` e)``` z = floor(x/y); ```

Computer Science & Information Technology

Which of the following tools can be used to manually scan a system for vulnerabilities?

a. Ping b. Telnet c. ShareEnum d. Ophcrack

Computer Science & Information Technology

What is another name for the user flow diagram?

A. Feed B. Funnel C. Passage D. Channel

Computer Science & Information Technology