Chapter 5 : JavaScript Objects & Arrays

Chapter 5 : JavaScript Objects & Arrays

Professional Development

20 Qs

quiz-placeholder

Similar activities

Javascript Quiz

Javascript Quiz

Professional Development

15 Qs

Javascript Datatypes and Variables(Kushal Das)

Javascript Datatypes and Variables(Kushal Das)

Professional Development

15 Qs

Java Basics

Java Basics

Professional Development

17 Qs

Datatypes and Flowcontrol

Datatypes and Flowcontrol

Professional Development

15 Qs

Basics of Java

Basics of Java

University - Professional Development

20 Qs

JavaScript Advanced

JavaScript Advanced

Professional Development

20 Qs

Code X Trade

Code X Trade

Professional Development

15 Qs

JS

JS

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?