This exercise is not yet available and will be updated soon. Please watch Canvas for an announcement.
Search Results
Searching for: O
Individual Exercises
You are writing code using a jeroo named charles who is currently holding a flower. Change the condition in this if-then-else statement...
You are writing code using a jeroo named jamie. Change the else clause so that jamie will turn right instead of hop when there is no...
You are writing code using a jeroo named jamie. Change the code so that jamie will turn right if a flower is to the right, or hop...
You are writing code using a jeroo named jamie. The following if-then-else statement will not compile because of a syntax error. Fix the...
You are writing code using a jeroo named jamie, who is holding a flower. Change the following if statement so that if jamie sees water on...
You are writing code using a jeroo named jaime. Change the following if-then-else statement to an if-then, so that jaime does nothing if...
You are writing code using a jeroo named jaime. Change the following if-then-else statement to an if-then (remove the else part), so that...
You are writing code using a jeroo named maria who already has a flower. Finish writing the if-then statement below so that maria will...
You are writing code using a jeroo named maria. There is a mistake in the following if-then statement. Find and fix the error, so that...
You are writing code using a jeroo named amy. Change the following if-else-if statement by adding an else so that amy will hop if she...
You are writing code using a jeroo named amy. Change the following if-then-else statement by adding a new else-if so that amy will turn...
You are writing code using a jeroo named amy. Change the following if-else-if statement by adding a new else-if so that amy will turn...
You are writing code using a jeroo named amy. Change the following if-else-if statement by changing the third part from an else only to...
You are writing code using a jeroo named jaime. Change the following if-then statement's condition so that jaime will hop only if there...
You are writing code using a jeroo named jaime. Change the following if-then statement's condition so that jaime will hop if there is a...
You are writing code using a jeroo named jaime. Change the following if-then statement's condition so that jaime will hop only if there...
You are writing code using a jeroo named jaime. Change the following if-then statement's condition so that jaime will hop only if there...
For this question you writing code for a Jeroo named erin. Change the if statement to a while loop so that erin will continue turning...
Write a method that takes as argument an integer size and returns an integer array of that size. The method should allocate a new array...
Write a method that takes two arguments, the first is an integer size and the second argument, init, is a default value to use to...
Write a method that will make a copy of an array. The method takes one parameter, orig. The method should make a new array the same size...
Write a method that takes an argument representing an array, orig, and returns a new array that is 50% bigger than the original one. The...
For this question we will be working with a constructor for a the TestingJeroo class again
public class TestingJeroo extends Jeroo {...For this question we will be working with a constructor for a new Jeroo child class called TestingJeroo
public class TestingJeroo extends...