Chapter 5 : JavaScript Objects & Arrays

Chapter 5 : JavaScript Objects & Arrays

Professional Development

20 Qs

quiz-placeholder

Similar activities

Refresh your basics - MISRA 2012

Refresh your basics - MISRA 2012

Professional Development

20 Qs

Sorting - IV year

Sorting - IV year

Professional Development

20 Qs

City & Guilds Level 3 Apprenticeship Coding and Logic

City & Guilds Level 3 Apprenticeship Coding and Logic

Professional Development

20 Qs

Pre Test Fundamental Kotlin

Pre Test Fundamental Kotlin

Professional Development

20 Qs

Quiz Pratispardha

Quiz Pratispardha

Professional Development

20 Qs

CloudBinary_Basic-Shell-scripting

CloudBinary_Basic-Shell-scripting

Professional Development

15 Qs

JavaScript

JavaScript

Professional Development

15 Qs

Season 5 #Spaic Python Weekly Quiz

Season 5 #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?