Web Development Concepts Assessment

Web Development Concepts Assessment

12th Grade

15 Qs

quiz-placeholder

Similar activities

Evaluasi dan Refleksi - 4

Evaluasi dan Refleksi - 4

12th Grade

10 Qs

JavaScript Basics CodeHS

JavaScript Basics CodeHS

7th - 12th Grade

20 Qs

GMetrix Session 2 JavaScript Exam

GMetrix Session 2 JavaScript Exam

10th - 12th Grade

12 Qs

JS Talks, Quiz #5

JS Talks, Quiz #5

1st - 12th Grade

15 Qs

AV1\R1 3TEC_BE_Acesso a Propriedades em JavaScript 1 a 16

AV1\R1 3TEC_BE_Acesso a Propriedades em JavaScript 1 a 16

1st Grade - University

15 Qs

SAINS KOMPUTER F5 BAB 3

SAINS KOMPUTER F5 BAB 3

10th - 12th Grade

18 Qs

Moringa JavaScript Arrays

Moringa JavaScript Arrays

5th Grade - Professional Development

10 Qs

Quiz Javascript Basic Pertemuan 3

Quiz Javascript Basic Pertemuan 3

9th - 12th Grade

10 Qs

Web Development Concepts Assessment

Web Development Concepts Assessment

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Duc Anh Pham

Used 1+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of a loop in JavaScript?

The purpose of a loop in JavaScript is to execute code only once

The purpose of a loop in JavaScript is to repeatedly execute a block of code.

The purpose of a loop in JavaScript is to stop the code execution

The purpose of a loop in JavaScript is to skip certain code blocks

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare an array in JavaScript?

let myArray = [];

myArray = []

var myArray = []

const myArray = []

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the syntax for creating an object in JavaScript?

const myObject = { key1: value1, key2: value2 };

const myObject = ( key1: value1, key2: value2 );

let myObject = { key1: value1, key2: value2 };

const myObject = [ key1: value1, key2: value2 ];

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Explain the difference between localStorage and sessionStorage in JavaScript.

localStorage and sessionStorage are the same and can be used interchangeably.

localStorage persists data even after the browser is closed, while sessionStorage clears data when the browser is closed.

localStorage clears data when the browser is closed, while sessionStorage persists data even after the browser is closed.

localStorage and sessionStorage are deprecated in modern browsers.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following loop: for (let i = 0; i < 5; i++) { console.log(i); }

0 1 2 3 4

5

7

6

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you access the third element of an array in JavaScript?

arrayName.third()

arrayName(2)

arrayName[2]

arrayName[3]

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the use of the 'this' keyword in JavaScript objects?

To refer to the current object instance within its own scope.

To access properties of a different object

To define a function within the object

To declare a new variable within the object

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?