A final_processing module is added to display a summary showing the count of students in the report. The count must be accumulated in the detail _processing module as each student is processed. The last thing done in the produce report module is to cal! the final_processing module

What will be an ideal response?

```
produce report
CALL initial processing
DO WHILE name < > "End of Data" CALL detail_processing
LOOP
CALL final_processing
initial_processing
LET count = 0
INPUT name, sex_code, status_code
detail_processing
IF sex code = "F" AND status_code = "F" 111LN OUTPUT name
LET count = count + I
END IF
INPUT name, sex_code, status_code
final_processing
OUTPUT "total number of students reported is ", count
```

Computer Science & Information Technology

You might also like to view...

Slide Sorter view displays all the slides in a presentation as thumbnails

Indicate whether the statement is true or false

Computer Science & Information Technology

You have been asked to perform a security audit on a computer system. The system administrator suspects that the pointer structure in the file system has been compromised, thus allowing certain unauthorized users to access critical system information. Describe how you would attempt to determine who is responsible for the security breach and how it was possible for them to modify the pointers.

What will be an ideal response?

Computer Science & Information Technology