Code Monkey home page Code Monkey logo

looping-quiz's Introduction

#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)

counter = 0

loop do
  puts "hi"
  counter+=1
  break if counter==100
end

( )

loop do
  puts "hi"
  break if counter==100
end

( )

loop do
  puts "hi"
end

?: What will this loop do?

x=0
while x < 10 do
  puts "so many loops"
end

( )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.

10.times do
  break
  puts "Hi"
end

(X)true ( )false

???

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

looping-quiz's People

Contributors

sophiedebenedetto avatar annjohn avatar joshuabamboo avatar gj avatar plai217 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.