Pseudocode - Computer Science Grade 10 [Practical]

Pseudocode - Computer Science Grade 10 [Practical]

10th Grade

7 Qs

quiz-placeholder

Similar activities

Introduction to Python Programming

Introduction to Python Programming

7th - 10th Grade

12 Qs

Dasar Pemrograman C++

Dasar Pemrograman C++

10th Grade

10 Qs

Python programming -recap

Python programming -recap

7th - 10th Grade

12 Qs

Python Variables

Python Variables

7th - 12th Grade

10 Qs

if statment

if statment

10th Grade

6 Qs

Python IF Statements

Python IF Statements

9th - 12th Grade

10 Qs

Arrays += Chan

Arrays += Chan

9th - 12th Grade

12 Qs

Python - Conditionals

Python - Conditionals

9th - 12th Grade

12 Qs

Pseudocode - Computer Science Grade 10 [Practical]

Pseudocode - Computer Science Grade 10 [Practical]

Assessment

Quiz

Computers

10th Grade

Hard

Created by

imam ibrahim

Used 1+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which of the following are valid variable names?

  1. myBestScore

  1. Name

  1. 1stClass

  1. cost_of_meal

  1. Print84

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

For each of thee following variables, state whether they need to be of STRING, INTEGER or REAL type.

1. Price

  1. 2. NumberOfSiblings

  2. 3. Name

  1. 1. INTEGER

  2. 2. REAL

  3. 3. STRING

  1. 1. REAL

  2. 2. INTEGER

  3. 3. STRING

  1. 1. STRING

  2. 2. INTEGER

  3. 3. REAL

There is no correct answer

3.

MULTIPLE CHOICE QUESTION

45 sec • 2 pts

Predict what is printed when runs these statements.

X <- 5
Y <- 10
X <- Y
Y <- 5

OUTPUT 10
OUTPUT 5

OUTPUT 5
OUTPUT 5

OUTPUT X
OUTPUT Y

OUTPUT 10
OUTPUT Y

4.

MULTIPLE CHOICE QUESTION

45 sec • 5 pts

Predict what is printed when runs these statements.

X <- "Tom"

Y <- "Fred"

Z <- "Henry"

Z <- Y

Y <- X

X <- Z

OUTPUT X
OUTPUT Y
OUTPUT Z

Fred
Tom
Fred

Henry
Tom
Fred

Henry
Fred
Tom

Henry
Fred
Henry

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Predict what is printed when runs these statements :
Num <- 16

Num <- Num + 1

Num <- Num + 3

OUTPUT "Num is ", Num

Num is 16

Num is 17

20

Num is 20

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is printed when the following statements are executed?

A <- 24 / 8

B <- 24 + 8

OUTPUT A == B

TRUE

FALSE

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Consider this pseudocode. What will be the output if score ← 75?

A

B

C

D