Quiz Question 1 of 1
Below is some code for a carnival based Dunk Tank. As long as there are tries remaining and the person has not been dunked keep throwing the ball.
Please choose the answer that properly fills in the blanks with the proper code for the while loop
int remainingTries = 3;
while (remainingTries __ 0 __ __ dunkTank.isDunked()) {
throwBall();
}
Choose the correct answer below: