Skip to content
This repository has been archived by the owner on Jun 23, 2019. It is now read-only.

Latest commit

 

History

History
10 lines (7 loc) · 906 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 906 Bytes

Java Practice

This is a repository to practice Java and TDD in small exercises.

Java logo

List of Exercises

1. Product Inventory Project - Create an application which manages an inventory of products. Create a product class which has a price, id, and quantity on hand. Then create an inventory class which keeps track of various products and can sum up the inventory value.

2. Company Manager - Create an hierarchy of classes - abstract class Employee and subclasses HourlyEmployee, SalariedEmployee, Manager and Executive. Every one's pay is calculated differently, research a bit about it. After you've established an employee hierarchy, create a Company class that allows you to manage the employees. You should be able to hire, fire and raise employees.