Year 11 Taster - Subprograms Review

Year 11 Taster - Subprograms Review

10th Grade

7 Qs

quiz-placeholder

Similar activities

Java Code Questions

Java Code Questions

9th Grade - University

11 Qs

Java Certification

Java Certification

9th Grade - University

11 Qs

Java Their

Java Their

9th Grade - University

11 Qs

IDT Unit 2 Quiz Review

IDT Unit 2 Quiz Review

8th - 12th Grade

10 Qs

Java Code

Java Code

10th - 12th Grade

12 Qs

Codehs Tracy

Codehs Tracy

10th - 12th Grade

12 Qs

Unit 1 Quiz - Bootstrap: Algebra

Unit 1 Quiz - Bootstrap: Algebra

6th - 12th Grade

10 Qs

Java Programming

Java Programming

9th Grade - University

11 Qs

Year 11 Taster - Subprograms Review

Year 11 Taster - Subprograms Review

Assessment

Quiz

Computers

10th Grade

Medium

Created by

P Bates

Used 3+ times

FREE Resource

7 questions

Show all answers

1.

HOTSPOT QUESTION

1 min • 2 pts

Identify the first line of code and last line of code that define the subprogram.

2.

HOTSPOT QUESTION

1 min • 2 pts

Identify the parameters.

3.

HOTSPOT QUESTION

1 min • 2 pts

Identify the arguments.

4.

HOTSPOT QUESTION

1 min • 1 pt

Identify the local variable.

5.

LABELLING QUESTION

1 min • 6 pts

Identify the different sections of the code.
a
b
c
d
e
f
Variable Assignment
Function Call
Print Statement
Loop
Procedure Call
Selection
Function Definition
List assignment
Comment

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Identify which of the following identifiers is NOT a global variable

TotalArea

Area

Length

i

Answer explanation

The identifier 'Area' is not a global variable because it is likely defined within a specific scope, while 'TotalArea', 'Length', and 'i' are typically used as global variables in programming contexts.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

The variable i is initialised (created) in line 17 of the program.
Identify the values the variable i will hold while the program is running.

1,2,3

2,4,5

0,1,2

7,6,5

Answer explanation

The variable i starts at 0 and increments by 1 in each iteration. Therefore, while the program runs, i will hold the values 0, 1, and 2 before it stops, making the correct choice 0,1,2.