This symbol is used to write a comment in Python.
What is #?
This data type stores whole numbers.
What is int?
This Python statement is used to start a loop that repeats a fixed number of times.
What is for?
The first high-level programming language, developed in the 1950s.
What is FORTRAN?
This function prints output to the console.
What is print()?
A sequence of characters in Python is called this.
What is string or str?
This keyword is used to make a decision in Python (if something is True).
What is if?
This language, created in 1972, is the foundation for many modern languages.
What is C?
This Python keyword is used to define a function.
What is def?
True or False values are stored using this data type.
What is bool?
This keyword is used to handle all other cases when using if.
What is else?
Developed in 1991, this language emphasizes readability and simplicity.
What is Python?
This operator is used for exponentiation in Python.
What is **?
This Python data type stores a collection of unique items.
What is set?
This keyword is used to exit a loop immediately.
What is break?
The first widely used programming language for business applications.
What is COBOL?
This data structure in Python can hold an ordered collection of items and allows duplicates.
What is a list?
This data type is used for numbers with decimal points.
What is float?
This keyword is used in a loop to skip the rest of the code in the current iteration.
What is continue?
This man is considered the “father of computer science” and helped design early programming concepts.
Who is Alan Turing?