Programming Checkpoint #2 - CodeWorkout

Score: 0 / 8.0


Exercises

0 / 2.0

Write a function in Java that implements the following logic: Given a number n, return true if n is in the range 1..10, inclusive. Unless...

0 / 2.0

Given a day number (1-7), return the day of the week ("Sunday", "Monday", etc.). If an invalid day number is provided, return "Invalid".

...
0 / 2.0

Given two integers low and high representing a range, return the sum of the integers in that range. For example, if low is 12 and high is...