Loops

Quiz
•
Computers
•
6th Grade
•
Medium
Ariel Cambas
Used 5+ times
FREE Resource
22 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How many times does the following loop runs?
var counter = 0;
while(counter < 10){
console.log(counter);
counter = counter + 1;
}
5
10
50
9
0
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How many times does the following loop runs?
var counter = 1;
while(counter < 10){
console.log(counter);
counter = counter + 1;
}
5
10
50
9
0
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How many times does the following loop runs?
var counter = 10;
while(counter <= 59){
console.log(counter);
counter = counter + 1;
}
5
10
50
9
0
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How many times does the following loop runs?
var counter = 5;
while(counter < 10){
console.log(counter);
counter = counter + 1;
}
5
10
50
9
0
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How many times does the following loop runs?
var counter = 10;
while(counter < 10){
console.log(counter);
counter = counter + 1;
}
5
10
50
9
0
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How many times does the following loop runs?
var counter = 10;
while(counter < 25){
console.log(counter);
counter = counter + 1;
}
15
20
8
2
6
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How many times does the following loop runs?
var counter = 0;
while(counter < 10){
console.log(counter);
}
forever
20
8
2
6
Create a free account and access millions of resources
Similar Resources on Wayground
20 questions
Loops

Quiz
•
1st - 12th Grade
20 questions
Prog F: Quiz 1 Revision

Quiz
•
6th - 8th Grade
21 questions
Preevaluación Par 2 FM

Quiz
•
6th - 8th Grade
20 questions
Presentations Quiz

Quiz
•
6th - 12th Grade
20 questions
Coding Concepts Quiz

Quiz
•
3rd Grade - University
20 questions
Python

Quiz
•
6th Grade
25 questions
For Loops Code.org/ Lessons 6-10 (Flocabulary)

Quiz
•
6th - 8th Grade
20 questions
Code.org Express Course

Quiz
•
6th - 8th Grade
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
9/11 Experience and Reflections

Interactive video
•
10th - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
9 questions
Tips & Tricks

Lesson
•
6th - 8th Grade
Discover more resources for Computers
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
8 questions
Time Management

Quiz
•
6th Grade
15 questions
Acceptable Use Policy (Quiz)

Quiz
•
6th - 8th Grade
25 questions
Career Vs. Job

Quiz
•
6th - 8th Grade
20 questions
Copyright and Fair Use

Quiz
•
6th - 8th Grade
21 questions
Input Output Storage Device

Quiz
•
5th - 8th Grade