Exception Handling Assignment
The purpose of this program was to demonstrate my ability to use exception handling methods with custom exceptions and data validation. The program queries the user for the full name of a student, and three different scores. It then checks that everything entered was valid (0-100 for the scores), and displays the student and their scores in a list box.
Home Utility Auditing Program
This program was an early assignment from learning Visual Studio. The program went through several iterations, each time the new requirements would add on more features. In its final version, the user needs to enter in a cost per kilowatt-hour and enter the usage of each appliance. The program will then calculate the total cost of that appliance, and list it alongside any other appliances that the user enters information for. The program reads in a default value for the power usage of each appliance, with an option to change the defaults, and has the ability to export the information to a text file (stored in _\HomeUtilityAuditing\bin\Debug)
Animal List
This was a project that I went a little overboard with. The point of the program was supposed to just allow the user to add, edit, and delete animals from a list. I decided to create a text based menu system so that the user could accomplish these goals.
Animal Database Access
This assignment was to demonstrate the use of a database in Java. The program incorporates an embedded Derby database into the program. After the database is initialized, the program reads in a list of animal objects to the database, and separately reads the database and allows the user to display characteristics of the objects.