The tag used to create an enclosed text into a superscript. Example: 2²
<SUP> Tag
The store where you download apps for Android devices.
Google Play Store
The keyword used to check a condition in Python.
if
The attribute used to change the background color of a page.
bgcolor / background-color
WhatsApp is an example of ___________
Mobile Application
The term for the blank space/offset at the start of a code block.
Indentation
The tag used to divide a webpage.
<HR> Tag
The block-based coding platform often used to build apps.
MIT App Inventor
The statement used when the if condition is False.
The attribute used to specify the indentation of the first line of the text.
text-indent
A type of app that is stored on a remote server.
Web App
The operator used to check if two values are exactly equal.
==
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.
An app created by combining features of a native app and a web app.
Hybrid App
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