Loops Flashcards
1
Q
Name the three types of Apex loops.
A
- While
- Do-While
- For
2
Q
True or False:
While Loops check the condition after the loop starts?
A
False: While Loops check the condition before the Loop starts.
3
Q
True or False:
Do-While Loops check the condition after the loop is finished.
A
True.
4
Q
A