R While Loop Flashcard

R While Loop Flashcard

Assessment

Flashcard

Computers

11th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

10 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What is the purpose of loops in programming?

Back

To execute a block of code multiple times

2.

FLASHCARD QUESTION

Front

Which of the following is a loop command in R? if, else, while, switch

Back

while

3.

FLASHCARD QUESTION

Front

What will the following R code print?
i <- 1
while (i < 6) {
print(i)
i <- i + 1
}

Back

1 2 3 4 5

4.

FLASHCARD QUESTION

Front

What does the 'break' statement do in a loop?

Back

Stops the loop immediately

5.

FLASHCARD QUESTION

Front

In the context of loops, what does the 'next' statement do?

Back

Skips the rest of the current iteration

6.

FLASHCARD QUESTION

Front

What will the following R code print?
i <- 1
while (i < 6) {
if (i == 4) {
break
}
print(i)
i <- i + 1
}
Options: 1 2 3, 2 3 4 5, 1 2 3 4, 1 2 3 4 5

Back

1 2 3

7.

FLASHCARD QUESTION

Front

What is the output of this R code?
i <- 0
while (i < 6) {
i <- i + 1
if (i == 3) {
next
}
print(i)
}

Back

1 2 4 5 6

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?