Mark has created a group of blocks that make a penguin dance. He wants the penguin to keep dancing in the background the entire time his program is running. Which of the following structures should Mark use to accomplish this? (1 point) Responses if statement if statement for loop for loop while loop while loop forever loop forever loop

1 answer

To have the penguin keep dancing in the background for the entire duration of Mark's program, he should use a forever loop. A forever loop will continuously execute the code within it without stopping, allowing the penguin to keep dancing as long as the program is running.