Essay
Programming (15 points)
In this question, we'll address the following problem: Can a cash register containing a given amount of pennies (1-cent coins) and a given amount of nickels (5-cent coins) give a customer a given exact amount of cents of change? For example, if there are 3 pennies and 5 nickels in the cash register, is it possible to give exactly 19 cents of change? (No.) If there are 2 pennies and 7 nickels in the register, is it possible to give exactly 26 cents of change? (Yes.)
Write a static method named canMakeChange that accepts three integer parameters representing the number of pennies in the cash register, the number of nickels in the cash register, and the desired amount of change to make. The method should return true if the coins in the register can produce this exact amount of change, and false if not. The coins in the register must be able to exactly produce the desired amount of change in order to return true; for example, if the register contains 0 pennies and 100 nickels, it is not able to exactly produce 8 cents of change.
The following are several sample calls to your method and the values they should return. You may assume that no negative parameter values are passed, but otherwise your method should work with any values passed.
Correct Answer:

Verified
(six solutions shown)
public static bool...View Answer
Unlock this answer now
Get Access to more Verified Answers free of charge
Correct Answer:
Verified
public static bool...
View Answer
Unlock this answer now
Get Access to more Verified Answers free of charge
Q1: Programming<br>Write a static method named printTwoDigit
Q2: While Loop Simulation<br>For each call below
Q3: Parameter Mystery<br>At the bottom of the page,
Q4: If/Else Simulation<br>For each call below to
Q5: Expressions<br>For each expression in the left-hand
Q6: Programming<br>Write a static method named consecutiveDigits
Q8: Assertions<br>For the following method, identify each