Array

Array

3rd Grade

8 Qs

quiz-placeholder

Similar activities

Python Basics for Students

Python Basics for Students

3rd Grade

12 Qs

Avaliação Pensamento Computacional - Prático

Avaliação Pensamento Computacional - Prático

1st Grade - Professional Development

10 Qs

Ujian Bahasa Turki 9

Ujian Bahasa Turki 9

1st Grade - Professional Development

10 Qs

Js Array & Loop

Js Array & Loop

3rd - 8th Grade

5 Qs

Ben's JS L1 Lesson 7

Ben's JS L1 Lesson 7

3rd - 9th Grade

10 Qs

Programming - Selection in an Algorithm

Programming - Selection in an Algorithm

1st - 11th Grade

10 Qs

Programming

Programming

1st - 10th Grade

10 Qs

Introduction to Arrays

Introduction to Arrays

KG - University

10 Qs

Array

Array

Assessment

Quiz

Computers, English, Education

3rd Grade

Hard

Created by

Lavannia Muyandy

Used 62+ times

FREE Resource

AI

Enhance your content

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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