More on HTML
App Development
Conditional Statements in Python
100

The tag used to create an enclosed text into a superscript. Example: 2²

<SUP> Tag

100

The store where you download apps for Android devices.

Google Play Store

100

The keyword used to check a condition in Python.

if

200

The attribute used to change the background color of a page.

bgcolor / background-color

200

WhatsApp is an example of ___________

Mobile Application

200

The term for the blank space/offset at the start of a code block.

Indentation

300

The tag used to divide a webpage.

<HR> Tag

300

The block-based coding platform often used to build apps.

MIT App Inventor

300

The statement used when the if condition is False.

else
400

The attribute used to specify the indentation of the first line of the text.

text-indent

400

A type of app that is stored on a remote server.

Web App

400

The operator used to check if two values are exactly equal.

==

500

What is the use of <HN> tag? How many levels does it have?

It used to add heading to your webpage. It has 6 levels.

500

An app created by combining features of a native app and a web app.

Hybrid App

500

Find the error

# Goal: Check if a person is 18 or older to vote

age = input("Enter your age: ")


if age > 18

print("You can vote!")

else if age == 18:

print("You just became eligible!")

else

    print(You cannot vote yet.)

age = int(input("Enter your age: ")) # Fixed: Added int()


if age > 18:                         # Fixed: Added colon

    print("You can vote!")           # Fixed: Added indentation


elif age == 18:                      # Fixed: Changed to elif

    print("You just became eligible!") # Fixed: Added indentation


else:                                # Fixed: Added colon

    print("You cannot vote yet.")    # Fixed: Added quotes

M
e
n
u