This data type is used to store true or false values.
What is a boolean?
This basic control flow structure allows you to execute a block of code only if a specified condition is true.
What is an if statement?
This keyword is used to define a reusable block of code that can be called with a specific name.
What is function?
This is the largest planet in our solar system.
What is Jupiter?
How many continents are there on Earth?
What is seven?
This data type is used to store decimal or floating-point numbers.
What is a float (or double, depending on the language)?
This control flow structure allows you to repeatedly execute a block of code as long as a specified condition remains true.
What is a while loop?
This type of loop runs a fixed number of times, determined before the loop starts.
What is a for loop?
This is the only mammal capable of true flight.
What is a bat?
What is the largest ocean on Earth?
What is the Pacific Ocean?
This data type is used to store a single character, like 'A' or '9'.
What is a char (character)?
This control flow structure checks multiple conditions and executes different blocks of code depending on which condition is true.
What is an if-else or if-else if structure?
In most programming languages, this is the index of the first element in an array.
What is 0?
This country is home to the Great Barrier Reef, the largest coral reef system in the world.
What is Australia?
What is the capital city of Japan?
What is Tokyo?
This composite data type is used to store multiple values of the same type in a single variable, indexed by a number.
What is an array?
This control flow structure is used to simplify multi-way branching by evaluating a single expression and executing different blocks of code based on its value.
What is a switch statement (or case statement)?
This control structure allows you to handle exceptions or errors that may occur during code execution.
What is a try-catch (or try-except) block?
This is the capital city of Canada.
What is Ottawa?
Which element has the chemical symbol O?
What is Oxygen?
This data type stores a value that cannot be changed after it is created, ensuring that it remains constant throughout the program’s execution.
What is a constant (or immutable data type, like a final variable or tuple)?
This keyword immediately stops the execution of a loop and exits it, even if the loop’s condition hasn’t been met.
What is a break statement?
This technique occurs when a function calls itself within its definition to solve a problem by breaking it down into smaller instances of the same problem.
What is recursion?
This historical figure was the first woman to fly solo across the Atlantic Ocean.
Who is Amelia Earhart?
Who developed the theory of general relativity?
Who is Albert Einstein?