Array

Array

3rd Grade

8 Qs

quiz-placeholder

Similar activities

Arrays

Arrays

KG - University

10 Qs

Информатика 9 класс Одномерный массив

Информатика 9 класс Одномерный массив

1st - 3rd Grade

10 Qs

Dojo - Type Inference

Dojo - Type Inference

1st - 12th Grade

13 Qs

Introduction of Data Structure

Introduction of Data Structure

1st - 10th Grade

10 Qs

Pointer

Pointer

1st - 3rd Grade

8 Qs

Python Tile Program

Python Tile Program

KG - 8th Grade

12 Qs

Dr. Hanuman@BEC_IT_21-06-19

Dr. Hanuman@BEC_IT_21-06-19

1st - 5th Grade

12 Qs

Data Types

Data Types

KG - 3rd Grade

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