Chapter 5 : JavaScript Objects & Arrays

Chapter 5 : JavaScript Objects & Arrays

Professional Development

20 Qs

quiz-placeholder

Similar activities

UJIAN MID SEMESTER 1 X RPL  PEMROGRAMMAN DASAR

UJIAN MID SEMESTER 1 X RPL PEMROGRAMMAN DASAR

Professional Development

25 Qs

Java Chapter 12 Review Questions

Java Chapter 12 Review Questions

Professional Development

21 Qs

Mid Test React JS

Mid Test React JS

Professional Development

25 Qs

Excel untuk Pemula

Excel untuk Pemula

Professional Development

20 Qs

Flutter Online Quiz

Flutter Online Quiz

Professional Development

18 Qs

JavaScript Básico

JavaScript Básico

Professional Development

19 Qs

Think it through

Think it through

University - Professional Development

16 Qs

Season 2 #Spaic Python Weekly Quiz

Season 2 #Spaic Python Weekly Quiz

KG - Professional Development

20 Qs

Chapter 5 : JavaScript Objects & Arrays

Chapter 5 : JavaScript Objects & Arrays

Assessment

Quiz

Computers

Professional Development

Medium

Created by

JX C

Used 41+ 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?