JavaScript - Control Statements

JavaScript - Control Statements

8th Grade

15 Qs

quiz-placeholder

Similar activities

Python - Test Revision

Python - Test Revision

8th Grade

20 Qs

Python Quiz - 5

Python Quiz - 5

6th - 8th Grade

10 Qs

Ch-8 Iterative statements in Python

Ch-8 Iterative statements in Python

8th Grade

12 Qs

FOR LOOPS and Angles with Tracy (PYTHON)

FOR LOOPS and Angles with Tracy (PYTHON)

7th - 8th Grade

10 Qs

python 2

python 2

8th - 9th Grade

14 Qs

JavaScript and HTML review

JavaScript and HTML review

8th - 10th Grade

20 Qs

Python Fundamentals

Python Fundamentals

8th Grade

12 Qs

Code Combat Review (Python)

Code Combat Review (Python)

8th Grade

10 Qs

JavaScript - Control Statements

JavaScript - Control Statements

Assessment

Quiz

Computers

8th Grade

Hard

Created by

Meenakshi Sharma

Used 8+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which is the right way to make a for loop?

Alienisation, The End, Rebels

Installation, Ending, Timer

Initialisation, Condition, Iteration

Initialisation, Counter, End Condition

2.

MULTIPLE SELECT QUESTION

10 sec • 1 pt

Which of the below are types of loops

If then Else

Switch Case

for loop

Conditional Operator

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Nested loops are

Multiple independent loops

Conditions in a loop

Loop in a Loop

Loop in a condition

4.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

for ( var i = 0; i < 50; i++ )


How many times will this loop execute

51 times

49 times

50 times

0 times

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the iterations runs 25 times

for ( var i = 2; i < 26; i ++ )

for ( var i = 0; i < 25; i ++ )

for ( var i = -1 ; i > 25 ; i -- )

for ( var i = 0; i <= 25; i --)

6.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

One of the below functions lets you climb 1000 feet

for ( var count = 0; count > 999; count --)

moveUpOneFoot();

}

for ( var count = 2; count <= 1002; count ++)

moveUpOneFoot();

}

for ( var count = 1000; count < 1; count --)

moveUpOneFoot();

}

for ( var count = 0; count < 1000; count ++)

moveUpOneFoot();

}

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you define a function in MakeCode?

function = climbUp();

fun = "climbUp";

function climbUp();

fun = (climbUp());

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?