Update the time taken for zebraZirly for each of the following behaviors, using the updateTimeTakenForBehavior below
Multiple Choice:
Update the time taken for zebraZirly for each of the following behaviors, using the updateTimeTakenForBehavior below
- A behavior named "Eat 1 pound of bark": 22
public void updateTimeTakenForBehavior(String behaviorName, int timeToComplete) {
for(int i = 0; i < this.behaviorList.length; i++) {
Behavior tempBehavior = this.behaviorList[i];
if( tempBehavior.getBehaviorName().equals(behaviorName)) {
tempBehavior.setTimeToComplete(timeToComplete);
}
}
Choose one of the following from the above choices (A, B, C or D within the code).
//A
zebraZirly.updateTimeTakenForBehavior(22, "Eat 1 pound of bark");
// B
zebraZirly.updateTimeTakenForBehavior("Eat 1 pound of bark", 22);
// C
zebraZirly.updateTimeTakenForBehavior("Eat 1 pound of bark");
zebraZirly.setTime(22);
// D
zebraZirly.updateTimeTakenForBehavior(22);
zebraZirly.setBehavior("Eat 1 pound of bark");
Step by step
Solved in 2 steps