Fundamentals of Programming
Quiz 1: Data Flow Name: Dhieniel Joshua Gajero
Instruction: Read the problem carefully. Use the Laboratory:
blank area below for your answer. Date: August22,20203
Problem:
A school wants to hire you for their new requirement, a simple Exam Grading System. The school administrators want
their clerk to type all the student details with the exam score for each term exam per course. Then, the application will
compute the average score of the exam per course by pressing the compute button. This app can be standlone or be-
based, it doesn’t matter. Identify the input and output data of the planned application. And also decide their appropriate
variable names and data types.
Input Flow
Input Data Data Type Variable
Name of the student String Student_name
Student's ID Integer Student_ID
Course name String Course_name
Scors of the exam Double Text_exam_scores
Output Flow
Output Data Data Type Variable
Average score per course Double Average_score_per_course
Overall average exam score for all Double Overall_average_score
course
Feedback message for the user String Feedback_message