#Unit 0 Assessment
###Installation & Submission
- Fork this repository to your GitHub profile
- Clone your forked copy into your
Desktop
git clone git@github:YOUR_USERNAME/unit-0-assessment.git
Import projectinto IntelliJ- Read the
Person,Place, andUnit0Testsclasses - Fix the empty methods in
Unit0Tests - Add your changed files, commmit your changes, and push the changes to your forked repo
###Instructions
- You must fix all of the methods in
Unit0Tests - There are 2 optional bonus methods
- The name of the method implies what the method should do
- Some of these methods require that the method return signature change.
- For example,
returnPrimitiveBooleanTrue()should returnboolean, notObject
- For example,
###Hints
- You can use the
mainmethod to test your methods! - Pay close attention to the method signatures and return values!
- You can use Google, StackOverflow, and the entire Internet :)
- Correct capitalization and spelling matter!
printHelloWorldshould print exactlyHello World- Names of cities, people, ... should be spelled and capitalized exactly as they are in the method signature!
###Definitions
- The sum of
aandb:a + b - A number is odd if it is not divisible by 2
- ex:
3is odd because3 / 2 == 0isfalse
- ex:
- A number is even if it is divisible by 2
- ex:
4is even because4 / 2 == 0istrue
- ex:
ais a multiple ofbifa % b == 0istrue