looping-quiz

#Looping Quiz

Objectives

  1. Use the loop keyword

  2. Use the break keyword

  3. Use the times keyword

  4. Look at a loop and figure out what it will do

???

Quiz

?: Here is a repeated list of puts statements.

puts "hi"
puts "hi"
puts "hi"
puts "hi"
puts "hi"

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

???

View Looping Quiz on Learn.co and start learning to code for free.

Last updated