Skip to content
MathsGenie logo
Open app

Course home

  1. IGCSE
  2. Computer Science Edexcel
  3. Question bank

Subprograms

EasyMedium
123456789101112131415161718192021222324252627282930
Question 16

A programmer writes the following algorithm:

def calculate_postage(weight):
    if weight < 100:
        cost = 1.50
    else:
        cost = 3.50
    return cost

parcel_weight = float(input("Enter weight: "))
final_price = calculate_postage(parcel_weight)
print("Postage cost is: " + str(final_price))

Identify the name of the user-defined function.

[1]

Subprograms Questions

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