Class 11 Computer Science Chapter 9 Practical Work Python Exercises Quiz 10 (25 MCQs)

Quiz Instructions

Select an option to see the correct answer instantly.

1. Which programming language influenced the creation of Python?
2. What does t.forward(300) do?
3. What is correct code for INTEGER in python?
4. Which keyword marks a spot in a function where the program flow will go back to the calling code?
5. Un conjunto de comandos conocidos se les denomina .....
6. A character that is controlled by a program through code is referred to as a
7. What is the process of converting one datatype to another called?
8. What will be the output of this code?x = 13y = 14if x!=y:print("Hello")else:print("Hi")
9. 4 == 4.0
10. Variables are
11. What is the result of following Program in python3if(32%2==0):print("32")else:print("2")
12. Which if the values below is a char data type?
13. Lists are?
14. Str="world of python programming" str+=" store" print(str)
15. Create a variable named x and assign the value of integer 50 to it
16. Select the correct answer:x = 15y = 4print('x ** y =', x**y)
17. Suppose list1 is [3, 5, 25, 1, 3], what is min(list1)?
18. If you type print("4"+"9") what result would you get
19. What is the output of program below?mariana ..... islands = ['Saipan', 'Tinian', 'Rota']mariana ..... islands.insert(0, 'Guam')print(mariana ..... islands)
20. Python uses indentation to block code into chunks
21. What will be the output from the following code?print("Hello" + "World")
22. Which of the following is not an advantage of using modules?
23. Which method is used to delete a value from the list and display it also?
24. Which logical operator is used to negate a condition?
25. A programming statement that allows a block of code to be repeated for a given range of values defines