WK 9 variable

WK 9 variable

12th Grade

10 Qs

quiz-placeholder

Similar activities

AP CSP code.org Unit 3 2020

AP CSP code.org Unit 3 2020

9th - 12th Grade

10 Qs

Python

Python

9th - 12th Grade

15 Qs

Programming - Syntax & Logic Errors

Programming - Syntax & Logic Errors

3rd - 12th Grade

10 Qs

22-23: APCSP Unit 4.4 Variables

22-23: APCSP Unit 4.4 Variables

9th - 12th Grade

8 Qs

ICT S112 Prelim Review Activity

ICT S112 Prelim Review Activity

12th Grade

15 Qs

SC025 UPS 1

SC025 UPS 1

12th Grade

15 Qs

Python and Algorithms

Python and Algorithms

12th Grade

15 Qs

J277 - 2.1 - Inputs, Outputs and Processes

J277 - 2.1 - Inputs, Outputs and Processes

10th Grade - University

10 Qs

WK 9 variable

WK 9 variable

Assessment

Quiz

Computers

12th Grade

Easy

Created by

Leng Kai Ooi

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

DISPLAY ("Going for a walk:")

DISPLAY ("ᕕ( ᐛ )ᕗ")

This is a computer program with _________statements.

1

2

3

4

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

DISPLAY ("Going for a walk:")

DISPLAY ("ᕕ( ᐛ )ᕗ")

Each statement calls a _________

named DISPLAY which expects a single ________ to determine what to display on the screen.

function, method

function, statement

statement, string

procedure, parameter

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of these is the best explanation of pseudocode?


Pseudocode is a language that represents concepts across programming languages, but cannot actually be run by a computer.

Pseudocode is a standard programming language that is understood by all computers.

Pseudocode is the language that runs the fastest on computers.


Pseudocode is a programming language that looks just like natural human language.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

score ← 1

shots ← 0

DISPLAY (score)

DISPLAY (shots)

shots ← 3

score ← shots

DISPLAY (shots)

DISPLAY (score)

What will be the output of that code?

1 0 3 4

1 0 4 3

1 0 4 4

1 0 3 3

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

hunger ← 6

cuddliness ← 9

playfulness ← 7

playfulness ← cuddliness

DISPLAY (playfulness)

DISPLAY (cuddliness)

DISPLAY (hunger)

After running that code, what will be displayed?

7 9 6

9 9 6

7 7 6

6 6 9

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

onionCount ← 2

garlicCount ← 6

what is the value of garlicCount

2

8

6

4

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Darrell is making a program to track his grades. He made the mistake of using the same variable name to track 3 different test grades, though. Here's a snippet of his code:

a ← 89

a ← 97

a ← 93

What will be the value of a after this code runs?

89

97

93

33

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?