Search Header Logo

Basic Data Structures - Intro to CS

Authored by Christina Perry

Computers

12th Grade

Used 28+ times

Basic Data Structures - Intro to CS
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of the following program?

[1, 3, 4, 5]

2

[1, 2, 3]

[4, 5]

[1, 2, 4, 5]

3

[3, 4, 5]

[4, 5]

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the following array:

var groceries = ["milk", "eggs", "bread", "cookies"];

Which of the following statements will change "bread" to "coffee"?

groceries.push("coffee");

groceries[2] = "coffee";

groceries["bread"] = "coffee";

groceries[3] = "coffee";

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Suppose we have a list schoolList shown below:

var schoolList = ["Richland", "Hanford", "Pasco"];

We want to write a function addSchool that will take a school list and an item as a parameter and add the item on to the end of the school list.

Which of the following is the correct implementation of addSchool?

Media Image
Media Image
Media Image
Media Image

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What does the following function bombers do?

Returns a copy of the list list, and does not modify the contents of the list.

Returns a copy of the list list, and leaves list empty.

Returns a new list containing the elements of the list list in reverse order, and leaves list empty.

Returns a new list contatining the elements of the list list in reverse order, and does not modify the contents of the list.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of the following program?

-1

1

0

2

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What elements can be stored in data structures?

Any kind of objects (anything you can store in a variable)

Strings of text and numerical values

Strings of text, numerical values, and booleans

numerical values

7.

DRAG AND DROP QUESTION

1 min • 1 pt

How do we add 6 on the end of this array?

var nums = [1, 2, 3, 4, 5];

nums​ (a)  

.push(6);
.push(5);
.pop(6);
.pop(5);
nums[0] = 6;
[3] = 6;

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?