H Plenary - Modular programming quick quiz

H Plenary - Modular programming quick quiz

10th Grade

8 Qs

quiz-placeholder

Similar activities

AP CSP Unit 5 Chap 1

AP CSP Unit 5 Chap 1

10th - 12th Grade

7 Qs

IMPERATIVE PROGRAMMING WITH C

IMPERATIVE PROGRAMMING WITH C

University

10 Qs

Python Review - Functions

Python Review - Functions

9th - 12th Grade

10 Qs

Variables in Python Quiz

Variables in Python Quiz

11th Grade

8 Qs

Python Libraries

Python Libraries

12th Grade

10 Qs

Quiz 120.2B - Subroutines (recognising key terms)

Quiz 120.2B - Subroutines (recognising key terms)

11th Grade

10 Qs

XII Csc Unit I Challenge

XII Csc Unit I Challenge

12th Grade

10 Qs

Theory

Theory

10th - 12th Grade

12 Qs

H Plenary - Modular programming quick quiz

H Plenary - Modular programming quick quiz

Assessment

Quiz

Computers

10th Grade

Hard

Created by

G Alexander-Doyle

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is an example of parameter passing in a procedural high-level language?

Passing values to a function when calling it

Declaring a variable inside a function

Using a loop to repeat code

Printing output to the screen

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the two main types of sub-programs/routines mentioned in the learning intentions?

Functions and procedures

Loops and conditions

Classes and objects

Arrays and lists

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following best describes a formal parameter?

The name given to the parameters identified in the definition of the subprogram.

The value passed to the subprogram during a call.

The output of the subprogram.

The memory address of the subprogram.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Where are formal parameters typically found in a function or procedure?

Within brackets in the declaration of a function or procedure.

In the return statement of the function.

In the main body of the program.

In the comments section of the code.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a local variable?

A variable defined within a subprogram or a block of code.

A variable that can be accessed from anywhere in the program.

A variable that is always constant.

A variable that is only used for input.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the difference between local and global variables?

Local variables are accessible only within a specific function, while global variables are accessible throughout the program.

Local variables are always integers, while global variables are always strings.

Local variables are stored on disk, while global variables are stored in memory.

Local variables are used for file handling, while global variables are used for calculations.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following always return a single value?

Function

Procedure

Method

Sub-routine

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following performs a task such as displaying output for the user?

Function

Procedure

Method

Sub-routine