// This application reads student typing test data

// including number of errors on the test, and the number
// of words typed per minute. Grades are assigned based
// on the following table

To get the grade for a student based on the number of errors and words typed per minute, you need to look at a grading table. This table will have different ranges of values for errors and words per minute, and corresponding grades assigned to those ranges.

To find a student's grade, you would need to compare their number of errors and words typed per minute to the ranges in the grading table and determine which grade corresponds to their scores.

You can find the grading table either within the application code or in a separate file or resource that the application reads.