Array

Array

3rd Grade

8 Qs

quiz-placeholder

Similar activities

Ben's JS L1 Lesson 7

Ben's JS L1 Lesson 7

3rd - 9th Grade

10 Qs

JavaScript: Coerción y Tipos de Datos

JavaScript: Coerción y Tipos de Datos

1st - 10th Grade

10 Qs

Js Array & Loop

Js Array & Loop

3rd - 8th Grade

5 Qs

Pascal. Символьные строки

Pascal. Символьные строки

2nd - 5th Grade

10 Qs

Arrays

Arrays

KG - University

10 Qs

Branching&Array

Branching&Array

1st - 3rd Grade

8 Qs

Java Data Structures

Java Data Structures

1st - 10th Grade

10 Qs

Variables and Functions

Variables and Functions

KG - University

10 Qs

Array

Array

Assessment

Quiz

Computers, English, Education

3rd Grade

Hard

Created by

Lavannia Muyandy

Used 62+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is an array?
A list of variables
A list of strings
A series of memory locations, each with the same name, that hold related data

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Why are arrays used?
Arrays store multiple data values under one name, reducing the complexity of our program
Arrays store more data than if we were using variables
Arrays store more data than if we were using strings

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the difference between an array and a list?
An array holds numbers, whereas a list holds strings
An array can only hold data of the same data type, whereas lists can hold values of different data types
An array holds both numbers and strings, whereas a list only holds numbers

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In Javascript, an Array can store...

integer, string, data

string, array

integer, string

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Choose the correct Array in Javascript.

var names= ["Blue" "Yellow" "Green"]

var names= ["Blue" , "Yellow" , "Green"]

varNames= [Blue, Yellow ,Green]

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Can you store multiple arrays of values in a variable?

not possible

no

yes

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is the correct Javascript that stores both integer and string?

var array = ["Blue", 2 , "Yellow", 3]

var array = [2 , Blue, Yellow, 3]

var array = ["2", "3", "Blue", "Yellow"];

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the video, why can't the Fuzz family escape the asteroid field?

the list of arrays code missing a coma.

the list of arrays is wrong

the list of arrays are not in order