2026 #1
1. Which of the following data types are supported in Python? - correct answer The
following data type are *Supported*:
1 - Numbers
2 - String
3 - List
4 - Tuples
5 - Dictionary
2. Which of the following data types are *not* supported in Python? - correct answer
Slice
3. What is the output of print(str) if str = 'Hello World!'? - correct answer Hello World!
4. What is the output of print(str[0]) if str = 'Hello World!'? - correct answer H
5. What is the output of print(str[2:5]) if str = 'Hello World!'? - correct answer llo
6. What is the output of print(str[2:]) if str = 'Hello World!'? - correct answer llo World!
7. What is the output of print(str * 2) if str = 'Hello World!'? - correct answer Hello World!
Hello World!
8. What is the output of print(list) if list=[ 'abcd', 786 , 2.23]? - correct answer ['abcd', 786
, 2.23]
9. What is the output of print(list[0]) if list =[ 'abcd', 786 , 2.23]? - correct answer abcd
10. What is the output of print(list[1:3]) if list=[ 'abcd', 786 , 2.23]? - correct answer [786,
2.23]
11. What is the output of print(list[2:]) if list=[ 'abcd',786, 2.23]? - correct answer [2.23]
12. What is the output of print (tinylist * 2) if tinylist = [123, 'john']? - correct answer [123,
'john',123, 'john']
13. Which of the following is correct about tuples in Python? - correct answer ***
14. What is the output of print(mytuple) if mytuple = ('abcd',786,2.23)? - correct answer
('abcd',786,2.23)
15. What is the output of print(mytuple[1:3]) if mytuple=('abcd',786,2.23)? - correct
answer (786, 2.23)