Test 1 Codeworkout Re-practice

Score: 0 / 11.0


Exercises

0 / 1.0

Write a function in Java that implements the following logic: Given three ints, a b c, return true if one of them is 10 or more less than...

0 / 1.0

Write a function in Java that implements the following logic: Given a string, if the string begins with "red" or "blue" return that color...

0 / 1.0

Given two strings, word and a separator sep, return a big string made of count occurrences of the word, separated by the separator...

0 / 1.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...

0 / 1.0

Given an array of ints, return true if every element is either a 1 or a 4. Otherwise, return false.