Skip to content

Course home

Constructs

Constructs

EasyMedium
1234567891011121314
Question 3

Read the following Python program snippet:

temperature = float(input("Enter temperature: "))
if temperature > 37.5:
    print("Fever detected")
elif temperature < 35.0:
    print("Hypothermia warning")
else:
    print("Normal temperature")

Give the keyword that is used to start the selection structure in this code.

[1]
Markscheme

Constructs Questions

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

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

Question bank