WK 9 variable

WK 9 variable

12th Grade

10 Qs

quiz-placeholder

Similar activities

GCSE Computer Science - Programming Keywords

GCSE Computer Science - Programming Keywords

9th - 12th Grade

15 Qs

Algorithm, Pseudocode, and Flowchart

Algorithm, Pseudocode, and Flowchart

11th - 12th Grade

15 Qs

S3 SDD Unit 2 KC 2

S3 SDD Unit 2 KC 2

7th Grade - University

13 Qs

Pseudocode-Quiz

Pseudocode-Quiz

12th Grade

10 Qs

AQA Computer Science GCSE - 3.1 Fundamentals of algorithms

AQA Computer Science GCSE - 3.1 Fundamentals of algorithms

10th - 12th Grade

15 Qs

AP CSP Worksheet 2

AP CSP Worksheet 2

9th - 12th Grade

10 Qs

47. Programming 1 : User Input & Display Output

47. Programming 1 : User Input & Display Output

9th - 12th Grade

9 Qs

ICT S112 Prelim Review Activity

ICT S112 Prelim Review Activity

12th Grade

15 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?