You will have 20 minutes to complete each quiz. If possible, we will distribute the quiz early, but you should not look at the questions until you are told to begin.
Quiz | Date | Topics | Code Snippets To Memorize |
---|---|---|---|
Quiz 1 | Jan 17 |
|
n/a |
Quiz 2 | Jan 31 |
|
Cube Function float cube(float x) { float result = x * x * x; return result; } if-statement if (a < 10) { b = a + 4; } |
Quiz 3 | Feb 14 |
|
Function return int value = pow(x, 3); println(value); Using arrays int[] arr = new int[3;] arr[2] = 7; arr[0] = arr[2] + 1; |
Quiz 4 | Feb 28 |
|
Using strings String s = "Hello, "; s = s + "world!"; println(s); |
Quiz 5 | Due Mar 13 | This will be an online course assessment worth 10 quiz points. The link will be posted soon. It must be completed by the end of Friday, Mar 13. | n/a |