Link to home
Start Free TrialLog in
Avatar of alkmat
alkmat

asked on

Assigning a letter grade (A, B, C, D, F)

Design and develop of project to assign a letter grade (A >= 90, B = [80..89], C = [70..79], D = [60..69], and F = [0..59]) to a student's Assignment based on a test score and other criteria.

Use a NumericUpDown control to allow the instructor's assistant to enter a test score between 0 and 100.
Use a group of RadioButton controls to determine the grade on Extra Credit Project #1: None (0 points), Average (3 point bonus), Above average (5 point bonus).
Use a second group of RadioButton controls to select whether a student handed in the assignment on time, with the default being On Time. The other choices are 1 to 2 days late (5 point penalty) and more than 2 days late (automatic score of 0).
Display the final total grade in a read-only TextBox control. Use global variables to keep track of which RadioButton control is checked before determining the final grade.


 

 


Avatar of Mike Tomlinson
Mike Tomlinson
Flag of United States of America image

We can't just do your homework for you.  We can however, help you solve any specifics problems you may be having with the assignment.  Post what you have so far, what areas you need help with and/or any specific errors you are getting.

~IM
ASKER CERTIFIED SOLUTION
Avatar of Mike Tomlinson
Mike Tomlinson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial