There are different types of loops in C#. Some are "Entry Controlled Loops", meaning that the evaluation of the expression that determines if the body of the loop should execute, happens at the beginning before execution of the body. Which types of loops are "Entry Controlled Loops"?

Answer Choices Below

While loops are the only example of entry controlled loops.


While and For loops are the two examples of entry controlled loops.


Do/While loops are the only entry controlled loops because they enter the body first which controls the loop.


For loops are the only example of entry controlled loops.