0% 0 Get ready, set, go Time ended Python Quiz - 1 This is a comprehensive MCQ quiz on Python fundamentals, operators, keywords, variables, lists, tuples, strings, list functions, and dictionaries with theoretical and practical questions 1 / 10 1. Which symbol is used for single-line comments in Python? A) /* B) // C) None of these D) # 2 / 10 2. Which keyword is used to create a function in Python? A) def B) func C) define D) function 3 / 10 3. How do you display the type of a variable in Python? A) VariableType(variable) B) variable.type() C) type(variable) D) typeof(variable) 4 / 10 4. What is the result of the expression "Hello" + " World"? A) Hello+World B) Error C) HelloWorld D) Hello World 5 / 10 5. What is Python? A) A high-level programming language B) A low-level programming language C) An operating system D) A hardware component 6 / 10 6. Which operator is used for exponentiation in Python? A) ** B) % C) // D) ^ 7 / 10 7. Which of the following is NOT a Python feature? A) Dynamic Typing B) Easy-to-read syntax C) Automatic Memory Management D) Static Typing 8 / 10 8. What is the output of the following code? x = 10 y = 20 print(x > 5 and y < 30) A) False B) Error C) True D) None of these 9 / 10 9. What is the data type of the variable 'x' in the following code? x = (1, 2, 3) A) list B) tuple C) dictionary D) string 10 / 10 10. Which of the following is NOT a valid variable name in Python? A) myVar B) 123Var C) Var123 D) _Var Your score is The average score is 0%Share this quiz with your friends, LinkedIn Facebook Twitter 0% Restart quiz Rate the quiz Send feedback Post navigation Quiz on Python Dictionary