Class 11 Computer Science Chapter 2 Introduction To Python Quiz 68 (25 MCQs)

Quiz Instructions

Select an option to see the correct answer instantly.

1. Loop while akan berhenti ketika .....
2. What will be the output of the following code? "'pythonprint(5 + 3) "'
3. How do you create a dictionary in Python?
4. Which statement best describes zip() when used on tuples of different lengths?
5. ..... are special words that are used by Python interpreter to recognize thestructure of program.
6. If you want to store multiple values in a single variable, which data type would you use?
7. What is the output of the following code:print(3 * 'Python')?
8. Python can be used to design games and 3D graphics
9. Is the result of 9 + 4 * 2
10. Keyword check:In the statement age = 13, what is the value?
11. What word means creating instructions to solve a problem?
12. What do we call a loop within a loop?
13. Which mode would you typically use in Python to write larger programs and save them as .py files?
14. The symbol for checking equality is:
15. Which keyword is used to skip the current iteration of a loop in Python?
16. What is the result of 2 + 3 * 4 in Python?
17. What will be the output of the following code snippet?print("Hello, World!")
18. Which symbol is used to print something in Python?
19. Which translator converts a HLL program into machine language by converting and executing line by line
20. The integer and float data types are used to represent
21. What is mentioned as the seed from which Python sprouted?
22. The Boolean operator that returns true if EITHER of its operands are true
23. For var1=input(); var2 = var1 + var1; print(var2). If the user enters 6, what is printed?
24. What will be the output of the following Python code?x = ['ab', 'cd'] for i in x:i.upper() print(x)
25. Who created Python and when was it released?