looping-quiz
#Looping Quiz
Objectives
Use the
loop
keywordUse the
break
keywordUse the
times
keywordLook at a loop and figure out what it will do
???
Quiz
?: Here is a repeated list of puts
statements.
How would you repeat this with loop/break 100 times?
(X)
( )
( )
?: What will this loop do?
( )puts "so many loops" one time ( )puts "so many loops" 10 times (X)puts "so many loops" infinitely
?: True or False: puts "Hi"
will never run.
(X)true ( )false
???
Last updated