Python Basics
Data Types
Control Flow
Computer Language History
100

This symbol is used to write a comment in Python.

What is #?

100

This data type stores whole numbers.

What is int?

100

This Python statement is used to start a loop that repeats a fixed number of times.

What is for?

100

The first high-level programming language, developed in the 1950s.

What is FORTRAN?

200

This function prints output to the console.

What is print()?

200

A sequence of characters in Python is called this.

What is string or str?

200

This keyword is used to make a decision in Python (if something is True).

What is if?

200

This language, created in 1972, is the foundation for many modern languages.

What is C?

300

This Python keyword is used to define a function.

What is def?

300

True or False values are stored using this data type.

What is bool?

300

This keyword is used to handle all other cases when using if.

What is else?

300

Developed in 1991, this language emphasizes readability and simplicity.

What is Python?

400

This operator is used for exponentiation in Python.

What is **?

400

This Python data type stores a collection of unique items.

What is set?

400

This keyword is used to exit a loop immediately.

What is break?

400

The first widely used programming language for business applications.

What is COBOL?

500

This data structure in Python can hold an ordered collection of items and allows duplicates.

What is a list?

500

This data type is used for numbers with decimal points.

What is float?

500

This keyword is used in a loop to skip the rest of the code in the current iteration.

What is continue?

500

This man is considered the “father of computer science” and helped design early programming concepts.

Who is Alan Turing?