Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Accumulate test score data (C#) Please show all your work In this exercise, youll create a form that accepts one or more scores from the

Accumulate test score data (C#)

Please show all your work

In this exercise, youll create a form that accepts one or more scores from the user. Each time a score is added, the score total, score count, and average score are calculated and displayed.

1. Start a new project named ScoreCalculator in the Assignmnet2\Ex3_ScoreCalculator directory.

2. Add labels, text boxes, and buttons to the default form and set the properties of the form and its controls so they appear as shown above. When the user presses the Enter key, the Click event of the Add button should fire. When the user presses the Esc key, the Click event of the Exit button should fire.

3. Declare two class variables to store the score total and the score count.

4. Create an event handler for the Click event of the Add button. This event handler should get the score the user enters, calculate and display

the score total,

score count,

and average score,

and move the focus to the Score text box.

It should provide for integer entries, but you can assume that the user will enter valid integer values.

5. Create an event handler for the Click event of the Clear Scores button. This event handler should set the two class variables to zero, clear the text boxes on the form, and move the focus to the Score text box.

6. Create an event handler for the Click event of the Exit button that closes the form.

7. Test the application to be sure it works correctly.

=========================================================image text in transcribed

rea And perimeter Length: 25 Width Area: Perimeter: 250 100 Calculate Exit

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Big Data, Mining, And Analytics Components Of Strategic Decision Making

Authors: Stephan Kudyba

1st Edition

1466568704, 9781466568709

Students also viewed these Databases questions

Question

Solve for x: 2(3x 1)2(x + 5) = 12

Answered: 1 week ago

Question

In an Excel Pivot Table, how is a Fact/Measure Column repeated?

Answered: 1 week ago