APA1 - Quick JS recap

APA1 - Quick JS recap

University

17 Qs

quiz-placeholder

Similar activities

Review JavaScript

Review JavaScript

11th Grade - University

20 Qs

Arrays

Arrays

4th Grade - Professional Development

20 Qs

JavaScript

JavaScript

University

15 Qs

Mike is leaving Quizizz 2 - Gamers theme

Mike is leaving Quizizz 2 - Gamers theme

5th Grade - University

16 Qs

JavaScript Basics

JavaScript Basics

12th Grade - University

15 Qs

HTML,CSS,SCRIPT QUIZZ

HTML,CSS,SCRIPT QUIZZ

University

18 Qs

JavaScript Arrays Quiz

JavaScript Arrays Quiz

11th Grade - University

20 Qs

FEWD Review

FEWD Review

University

12 Qs

APA1 - Quick JS recap

APA1 - Quick JS recap

Assessment

Quiz

Computers

University

Medium

Created by

Steve Rich

Used 4+ times

FREE Resource

17 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What will be output on line 7?

7

13

14

15

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which line has on it a template string literal?

Line 1

Line 2

Line 4

Line 6

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which line in this conditional will be executed?

Line 4

Line 6

4.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Media Image

In this code, what is the purpose of the " ? : " symbols?

It's a conditional ternary operator used to assign a value to canVote based on the age.

It's a syntax error, and the code won't run.

It's a shorthand way to define an if-else statement.

It's used to compare the value of age with 18.

Answer explanation

The ? : symbols represent the ternary operator in JavaScript. It's a concise way to write an if-else statement in a single line. In this case, it checks if age is greater than or equal to 18. If true, it assigns "Yes" to canVote; otherwise, it assigns "No".

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

In this code, when would the grade be set to "F"?

When score is greater than or equal to 90.

When score is between 80 and 89 (inclusive).

When score is between 70 and 79 (inclusive).

When score is between 60 and 69 (inclusive).

When score is less than 60.

Answer explanation

The code uses nested ternary operators to assign a grade based on the score. The final part of the expression : "F" acts as a default case. This means that if none of the previous conditions are met (i.e., the score is not greater than or equal to 60), the grade will be set to "F".

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

In this code, what would happen if the day was "Tuesday"?

It would log to the console: "It's the start of the week."

It would log to the console: "It's midweek!"

It would log to the console: "It's the weekend!"

It would log to the console: "It's just another day."

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

In this code, what would happen if the time was -5?

It would log "Good morning!" to the console.

It would log "Good afternoon!" to the console.

It would log "Good evening!" to the console.

There would be a syntax error.

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?