JavaScript Quiz III

JavaScript Quiz III

University

17 Qs

quiz-placeholder

Similar activities

Media Evolution Through the Ages

Media Evolution Through the Ages

12th Grade - University

15 Qs

Selection Programming_If condition

Selection Programming_If condition

8th Grade - University

15 Qs

P J Quang Huy

P J Quang Huy

7th Grade - University

20 Qs

1ST SUMMATIVE

1ST SUMMATIVE

12th Grade - University

21 Qs

JavaScript Quiz

JavaScript Quiz

University

20 Qs

Data Structure Quiz

Data Structure Quiz

University

21 Qs

QUIZ#1 MIL GALILEE

QUIZ#1 MIL GALILEE

12th Grade - University

20 Qs

Quizizz - SS01 - TSU PLUS - Java Fundamental

Quizizz - SS01 - TSU PLUS - Java Fundamental

University

15 Qs

JavaScript Quiz III

JavaScript Quiz III

Assessment

Quiz

Information Technology (IT)

University

Hard

Created by

Tshering Dorji

Used 2+ times

FREE Resource

17 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following is an operand in

4 + 5 ?

4

5

+

Both 4 and 5

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the output of: console.log(4 + "5");

9

45

NaN

Error

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Why does 10 - "3" work but

"10a" - 3 gives NaN?

JavaScript converts all strings to numbers automatically

"3" is numeric, but "10a" is not

Both should give a number

"10a" is treated as 0

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What’s the difference between == and ===?

Both check value and type

`==` checks only type

`==` checks value with type coercion; `===` checks value and type

`===` checks only value

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which operator would you use to check if a number is even?

%

**

/

++

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

If x = 10, what does

x += 5;

x *= 2;

result in?

30

25

20

50

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will this print? let x = 2; console.log(x++ + ++x);

4

5

6

7

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?