Skip to content
MathsGenie logo
Open app

Course home

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

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]

Constructs Questions

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