Skip to content

Course home

Subprograms

Subprograms

EasyMedium
123456789101112131415161718192021222324252627282930
Question 29

A programmer is writing a system to manage sales calculations. Study the following algorithm:

tax_rate = 0.20

def calculate_tax(subtotal):
    tax_amount = subtotal * tax_rate
    return tax_amount

Identify the name of a local variable used in this code.

[1]
Markscheme

Subprograms Questions

  1. IGCSE
  2. /Computer Science
  3. /Subprograms

33 exam-style questions on Edexcel IGCSE Computer Science Subprograms. Each one has a worked solution and a mark scheme showing where the marks go.

Question bank