PYTHON BASICS
VARIABLES
& DATA TYPES
OPERATORS
INPUT & OUTPUT
CHALLENGE ROUND
100

What is the process of writing instructions for a computer?

Programming

100

The datatypes that store whole numbers.

Integer(int)

100

What arithmetic operation does the + symbol represent?

Addition

100

Which function identifies a variable's data type?

type()

100

What is the output?

num1 = 2

num2 = 4


print(10 + 5)

15

200

What is a collection of instructions called?

Program

200

The datatypes that store decimal numbers.

float

200

What arithmetic operation does the * symbol represent?

Multiplication

200

What is the output?
print("Hello")

Hello

200

What is the output?

num1 = 10

num2 = 4

print(num1 - num2)

6

300

Who writes computer programs?

Programmer

300

The datatypes that enclose text, character or numbers inside quotation marks. 

String (str)

300

What arithmetic operator is represented by the % symbol?

Modulo

300

What is the output?
name = "Ana"
print(f"Hi {name}")

Hi Ana

300

What is the output?
print(7 * 8)

56

400

What gives instructions to a computer?

Programming Language

400

Is a built-in function used to display output to the screen (console).

prinT()

400

What arithmetic operator in Python is represented by the ** symbol?

Exponentiation (or Exponent / Power)

400

What is the output?
name = "Lloyd"
print(type(name))

str(String)

400

What is the output?
print(20 // 6)

3

500

What comes after Algorithm?

Code

500

Is a built-in function used to take input from the user via the keyboard.

input()

500

It divides two numbers and rounds the result down to the nearest whole integer (towards negative infinity), dropping any decimal remainder.

Floor Division

500

What is the output? name = "Ana" print(f"Hello, {Naame}")

NameError

500

What is the output?

print(3**2)

9