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

```
counter = 0

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

( )

```
loop do
  puts "hi"
  break if counter==100
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](https://learn.co/lessons/looping-quiz) on Learn.co and start learning to code for free.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://certil-remy.gitbook.io/learn/ruby/untitled-15.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
