Chapter 5 : JavaScript Objects & Arrays

Chapter 5 : JavaScript Objects & Arrays

Professional Development

20 Qs

quiz-placeholder

Similar activities

PHP TEST 2

PHP TEST 2

1st Grade - Professional Development

20 Qs

Java Quiz on Module 1 & 2

Java Quiz on Module 1 & 2

Professional Development

21 Qs

JavaScript

JavaScript

Professional Development

21 Qs

Flutter Online Quiz

Flutter Online Quiz

Professional Development

18 Qs

JavaScript Quiz

JavaScript Quiz

Professional Development

20 Qs

Flutter_Q1

Flutter_Q1

Professional Development

21 Qs

Flutter_Q2

Flutter_Q2

Professional Development

22 Qs

JavaScript Pass by value, Pass by Reference, Scope Hoisting

JavaScript Pass by value, Pass by Reference, Scope Hoisting

Professional Development

15 Qs

Chapter 5 : JavaScript Objects & Arrays

Chapter 5 : JavaScript Objects & Arrays

Assessment

Quiz

Computers

Professional Development

Medium

Created by

JX C

Used 37+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many values or properties can an Object contain

One value/properties

Two values/properties

Multiple values/properties

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify the name of the object in the following code:


var car = { model: "EXPLORER", brand: "Ford", IntroductionYear: 2019 }

car

"EXPLORER"

model

var

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify a key in the following code:


var car = { model: "EXPLORER", brand: "Ford", IntroductionYear: 2019 }

car

"EXPLORER"

model

var

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify a value in the following code:


var car = { model: "EXPLORER", brand: "Ford", IntroductionYear: 2019 }

car

"EXPLORER"

model

var

5.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

How would you access the value "Ford"


var car = { model: "EXPLORER", brand: "Ford", IntroductionYear: 2019 }

car.Ford;

car["brand"];

car.getbrand;

car.brand;

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is DRIVE in the code below?


var car = {

DRIVE: function()

alert("Drive");

}

A property

A method

A variable

A function

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the code that allows you to make use DRIVE?


var car = {

DRIVE: function()

alert("Drive");

}

drive()

DRIVE()

car.drive()

car.DRIVE()

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?