Arrays in Pseudocode

Arrays in Pseudocode

5th Grade

8 Qs

quiz-placeholder

Similar activities

Introduction to Data Structure

Introduction to Data Structure

1st - 10th Grade

10 Qs

Java Web

Java Web

1st - 7th Grade

12 Qs

open office writer

open office writer

5th Grade

11 Qs

VECTORES

VECTORES

1st - 5th Grade

10 Qs

Programming - Arrays

Programming - Arrays

2nd - 12th Grade

10 Qs

Typing

Typing

KG - University

12 Qs

Программирование C#

Программирование C#

1st - 10th Grade

10 Qs

A words - GCSE Computer Science

A words - GCSE Computer Science

1st - 10th Grade

13 Qs

Arrays in Pseudocode

Arrays in Pseudocode

Assessment

Quiz

Computers

5th Grade

Hard

Created by

Ryan Downie

Used 29+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The index of the first element in an array is:

1

First

0

[index]

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would this output?

array shopping = ["milk","eggs","apples"]

print(shopping[1])

milk

eggs

apples

milk, eggs, apples

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would this output?

array shopping = ["milk","eggs","apples"]

print(shopping[3])

apples

milk, eggs, apples

3

Error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is an array?

A block of adjacent memory locations, given an identifier, and each location has a numbered index

A sequence of numbers

An object that allows you to select an option and the algorithm branches from that point

A programming construct

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does PRIMM stand for?

Program, Run, Investigate, Modify, Make

Predict, Run, Implement, Modify, Make

Program, Run, Implement, Modify, Make

Predict, Run, Investigate, Modify, Make

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the length of this array?

array shopping = ["milk","eggs","apples"]

print(len(shopping))

3

4

2

Error

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would this output?

array shopping = ["milk","eggs","apples"]

print(shopping[0])

milk

eggs

apples

milk, eggs, apples

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the 'Modify' in PRIMM stand for?

Change the code to improve it

Change the code to fix errors

Change the code to add features

All of the above