|
|
8 vuotta sitten | |
|---|---|---|
| .gitignore | 8 vuotta sitten | |
| LoopFun.java | 8 vuotta sitten | |
| LoopFunTest.java | 8 vuotta sitten | |
| MathUtilities.java | 8 vuotta sitten | |
| MathUtilitiesTest.java | 8 vuotta sitten | |
| README.MD | 8 vuotta sitten | |
| StringUtilities.java | 8 vuotta sitten | |
| StringUtilitiesTest.java | 8 vuotta sitten | |
| package.bluej | 8 vuotta sitten |
You have two hours to complete this quiz. Make sure your code compile when you submit the PR!
forked repository to your local machinegit add . to add files you want to commitgit commit -m "commit message" to commit your changesgit push your staged files to your remote repositorypull request which compares Zipcoder master to your masterMake all the tests in the MathUtilitiesTest class pass. All the methods have been stubbed out for you in the MathUtilities class. Each of the method has a comment above it to describe the expected behavior. Look at the test case to see example of input and expected output.
int add(int num1, int num2)double add(double num1, double num2)double half(int number)boolean isOdd(int number)int square(int number)Make all the tests in the StringUtilitiesTest class pass. All the methods have been stubbed out for you in the StringUtilities class. Each of the method has a comment above it to describe the expected behavior. Look at the test case to see example of input and expected output.
Character getMiddleCharacter(String word)String removeCharacter(String value, char charToRemove)String getLastWord(String value)Make all the tests in the LoopFunTest class pass. All the methods have been stubbed
out for you in the LoopFun class.
Each of the method has a comment above it to describe the expected behavior.
Look at the test case to see example of input and expected output.
int factorial(int number)String acronym(String phrase)String encrypt(String word)