JAVASCRIPT.QUIZ

JAVASCRIPT.QUIZ

University

15 Qs

quiz-placeholder

Similar activities

Recap on HTML and CSS

Recap on HTML and CSS

University

16 Qs

Basic HTML & HTML5

Basic HTML & HTML5

University

11 Qs

BJC Unit 2 Concepts Review

BJC Unit 2 Concepts Review

10th Grade - University

12 Qs

Javascript

Javascript

KG - Professional Development

13 Qs

sample test

sample test

University

10 Qs

Refresh your JavaScript Skills!

Refresh your JavaScript Skills!

University

16 Qs

DOM manipulation review

DOM manipulation review

University

10 Qs

Quis CSS W3Schools

Quis CSS W3Schools

University

10 Qs

JAVASCRIPT.QUIZ

JAVASCRIPT.QUIZ

Assessment

Quiz

Computers

University

Easy

Created by

Zaira Zaira

Used 2+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Where is the correct place to insert a JavaScript?

Both the head section and the body section are correct

The head section

The body section

None of the above

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following is not a valid JavaScript variable name?

2java

_java_and_java_names

javaandjava

None of the above

3.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

What is the correct syntax for referring to an external script called 'gfg.js'?

«script name="gfg.js">

«script href="gfg.js">

<script src="gfg.js">

None of these

4.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

What will be the output for the following lines of code:

function sayHi) {

console.10g (name) ; console.log (age);

var name = 'Lydia';

let age = 21;

sayHi ();

Lydia and undefined

Lydia and ReferenceError

ReferenceError and 21

undefined and ReferenceError

5.

MULTIPLE CHOICE QUESTION

1 min • 3 pts

What's the output ?

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

setTimeout (() →> console.1

for (let i = 0; 1 < 3; i++)

setTimeout (() => console.1

}

012 and 0 1 2

012 and 3 3 3

3 3 3 and 0 1 2

None of the above

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be the output of the following code?

const firstName='Rishi'

lastName='Raj'

console.log(`hello ${firstName}, nice to meet you`);

hello ${firstName}, nice to meet you

hello Rishi, nice to meet you

hello Raj, nice to meet you

None of the above

7.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

Which of the following is true w.r.t. variables ?

Variables declared with let and const can’t be hoisted

Variables declared with var can be hoisted

Both a and b

None of the above

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?