Create a program that stores key terms and definitions in a HashMap.
For example:
| | |
| --- | --- |
| Key Term | Definition |
| Bit | Binary Digit |
| Byte | 8 Bits |
Provide a GUI so that students can enter a key term and look up the definition, or print out a list of key terms and definitions.
# Use Case Diagram
![[Definition Helper.jpg]]
```
Yuml: https://yuml.me/diagram/scruffy/class/draw
[Student]-(Look up Definition)
[Teacher]-(Add Definition)
(Look up Definition)<(Load Definitions)
(Add Definition)<(Save Definitions)
[Student] -(Print Definitions)
```