SEARCH
🇬🇧
MEM
O
RY
.COM
4.37.48
Guest
Log In
Â
Homepage
0
0
0
0
0
Create Course
Courses
Last Played
Dashboard
Notifications
Classrooms
Folders
Exams
Custom Exams
Help
Leaderboard
Shop
Awards
Forum
Friends
Subjects
Dark mode
User ID: 999999
Version: 4.37.48
www.memory.com
You are in browse mode. You must login to use
MEM
O
RY
  Log in to start
Index
 »Â
Computer science
 »Â
Programming
 »Â
Program flow - Iteration
level: Program flow - Iteration
Questions and Answers List
level questions: Program flow - Iteration
Question
Answer
Which loop is controlled by a condition at the start of the loop?
While
__________ will be an infinite loop if the condition is FALSE
REPEAT-UNTIL loops
What type of iteration will repeat for the exact number of times a user tell it to?
Definite iteration
FOR loop is an example of _______ iteration
Definite
FOR k <- 1 TO 100 , how many times will it execute?
100
What is nested iteration statements?
Loops within loops