Get the answers you need at Westonci.ca, where our expert community is always ready to help with accurate information. Discover the answers you need from a community of experts ready to help you with their knowledge and experience in various fields. Experience the convenience of finding accurate answers to your questions from knowledgeable experts on our platform.

brainliest for correct answer

Marta is creating a program that will guide the user through a series of physical exercises. She wants the program to coach the user to do 10 push-ups. Which kind of loop should be used?
a binary loop
a condition-controlled loop
a count-controlled loop
an interface loop


Sagot :

Answer:

a condition-controlled loop

Explanation:

count=1

do

   print(count)

   count+=1

while count <10