Design, implement, test, and debug a C# program that displays a pet’s name when a button is clicked.
Design, implement, test, and debug a C# program to simulate the rolling of two dice 100 times, and write and read results from a file.
Design a GUI for the program that will be intuitive for a novice user. This may be a desktop or web application. Write the code for the program and test the results.
Design, implement, test, and debug a C# program to show the frequencies of the sum of two dice for 100 rolls. The program will read the file you created in the dice simulation in Milestone 2. Include the following:
This may be a desktop or web application.
Create a class called Employee that will include the attributes of all employees of your organization. Include at least five attributes. If you are not currently working, you may use a fictional organization or one with which you are familiar.
Add a second class that inherits from the Employee class and describes a subgroup of employees. For example, you may define the class as Managers. In the case of city employees, you may define the class as Police Officers. Define at least three attributes that are specific to this subclass.
Design, implement, test, and debug a C# program that asks the user to enter attributes for members of the subclass on a single form. The entries will include fields for the attributes of the main Employee class as well as the subclass. Include a second form that will display a cumulative list of all the employee data that the user has entered.
This may be a desktop or web application.
Build a database using the attributes of the Employee class and the subclass you defined in Milestone 4 as your fields. Populate the database with at least five employees.
Design, implement, test, and debug a C# program to access the database and display the entries.
This may be a desktop or web application.