Javascript For loop and While Loop

Javascript For loop and While Loop

12th Grade

5 Qs

quiz-placeholder

Similar activities

Moringa JavaScript Iteration

Moringa JavaScript Iteration

9th Grade - Professional Development

10 Qs

For Loops

For Loops

9th - 12th Grade

10 Qs

Loops

Loops

9th - 12th Grade

10 Qs

LOOPS IN C++

LOOPS IN C++

10th Grade - University

10 Qs

Programming - Iteration, Basic Programming Constructs & Loop

Programming - Iteration, Basic Programming Constructs & Loop

2nd - 12th Grade

10 Qs

Python Loops

Python Loops

9th - 12th Grade

10 Qs

C++ Programming Quiz

C++ Programming Quiz

12th Grade

10 Qs

AP CS A Quiz 4 Practice

AP CS A Quiz 4 Practice

9th - 12th Grade

9 Qs

Javascript For loop and While Loop

Javascript For loop and While Loop

Assessment

Quiz

Other, Computers

12th Grade

Hard

Created by

Aref .

Used 171+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

what is a for loop?

loops through a number of block of code one time

loops through a block of code a number of times

loops through a block of code one time

many loops through a block of code a number of times

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The number is 0

The number is 1

The number is 2

The number is 3

The number is 4

which is the correct code?

for (i = 0; i < 5 i++)

FOR (i = 0; i < 5; i++)

for (i = 0; i < 4; i++)

for (i = 0; i < 5; i++)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

what is a while loop?

loops through a block of code as long as a specified condition is false

loops through a block of code as long as a specified condition is true or false

loops through a block of code as long as a specified condition is true

loops through a number block of code as long as a specified condition is true

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The number is 0

The number is 1

The number is 2

The number is 3

The number is 4

The number is 5

The number is 6

The number is 7

The number is 8

The number is 9

which code is correct?

while (i < 10) {

text += "<br>The number is " + i;

i++;

}

while (i < 9) {

text += "<br>The number is " + i;

i++;

}

while (i < 10) {

text += "<br>The number is " + i;

i++

}

while (i < 10)

text += "<br>The number is " + i;

i++;

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

var i = 0;

(i 10) {

console.log(i);

i++

}

fix the code using while loop and i is bigger then 10

WHILE , <

while , bigger

while , <

while , >