What is the primary purpose of a programming language?
Which feature of Python allows it to be considered user-friendly and accessible to a wide range of programmers?
Which of the following is a reserved keyword in Python that is used for defining a function?
Which of the following statements is true regarding identifiers in Python?
What does the term "identifier" refer to in Python programming?
What is the primary purpose of adding comments in Python code?
What is a key characteristic of every object in Python?
Which of the following is NOT a numeric type in Python?
Which of the following data types in Python is used to represent a collection of unique items that are unordered?
Which of the following statements correctly describes a dictionary in Python?
Which of the following data types in Python is considered mutable?
Which data type is best suited for a collection of items that may change frequently, such as a list of students in a class?
When would you choose to use a tuple instead of a list in Python?
Why would a set be the ideal choice for storing a collection of museum artifacts?
In what scenario would a dictionary be the most appropriate data structure to use?
What is the primary purpose of an operator in Python?
Which arithmetic operator in Python is used for exponentiation?
Which assignment operator in Python is used to add the right-side operand to the left-side operand and assign the result to the left-side operand?
Which logical operator in Python returns True only if both operands are True?
Which of the following statements about the identity operator 'is' in Python is true?