Pseudocode - Computer Science Grade 10 [Practical]

Pseudocode - Computer Science Grade 10 [Practical]

10th Grade

7 Qs

quiz-placeholder

Similar activities

SSK1013 Topik 2

SSK1013 Topik 2

10th Grade

10 Qs

Python Quiz  -  5

Python Quiz - 5

4th - 11th Grade

10 Qs

Lớp 10: Câu hỏi TN củng cố kiến thức

Lớp 10: Câu hỏi TN củng cố kiến thức

10th Grade

10 Qs

Pseudocode - Iteration

Pseudocode - Iteration

7th - 11th Grade

10 Qs

CODEHS Looping Unit 5 Review

CODEHS Looping Unit 5 Review

9th - 12th Grade

10 Qs

Java while loops

Java while loops

10th - 12th Grade

10 Qs

Unit 5 Review

Unit 5 Review

9th - 12th Grade

12 Qs

Python IF ELSE

Python IF ELSE

10th Grade

11 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