Javascript Quiz 2

Javascript Quiz 2

11th Grade

15 Qs

quiz-placeholder

Similar activities

Java Script

Java Script

10th - 12th Grade

10 Qs

Web JavaScript

Web JavaScript

10th Grade - University

15 Qs

Khối 11 KT 15p

Khối 11 KT 15p

11th Grade

15 Qs

AP CSP Unit 5 Review: Lists, Loops and Traversals

AP CSP Unit 5 Review: Lists, Loops and Traversals

9th - 12th Grade

19 Qs

Kiểu Xâu

Kiểu Xâu

8th - 11th Grade

16 Qs

AP CSP 2020 Midterm Review

AP CSP 2020 Midterm Review

10th - 12th Grade

16 Qs

JavaScript For Loops

JavaScript For Loops

11th - 12th Grade

18 Qs

TIN 11 BÀI 11 KIỂU MẢNG

TIN 11 BÀI 11 KIỂU MẢNG

11th Grade

18 Qs

Javascript Quiz 2

Javascript Quiz 2

Assessment

Quiz

Computers

11th Grade

Hard

Created by

ARTURO PARIÑAS

Used 22+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many choices are possible when using a single if-else statement?

1

2

3

4

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What Javascript code matches this statement:

Their name is Kim and they are less than 16 years old

if (name = "Kim" && age < 16 )

if (name = "Kim" || age < 16 )

if (name === "Kim" && age < 16 )

if (name === "Kim" || age < 16 )

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What Javascript code matches this statement:

The player's health is 0 and they still have a life remaining.

if (health == "0" && lives > "0")

if (health === 0 && lives >= 0)

if (health <1 && lives > 0)

if (health === 0 && lives > 0)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What Javascript code matches this statement:

The player has gathered at least 300 coins or reached the end of the level.

if ("coins" >= 300 && "end" == true)

if (coins >= 300 || end == true)

if ("coins" >= 300 OR "end" == true)

if ("coins" >= 300 || "end" == true)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What kind of statement is an If statement?

comparison statement

anecdotal statement

conditional statement

looping statement

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What kind of operators do If statements use to test conditions?

comparison operators

arithmetic operators

array operators

bitwise operators

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What happens when an If statements conditional is not true?

the if statement executes

Nothing happens

the if statement start over

all options are correct

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?