questions with 100% correct answers (6)
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)
16. What is the output of print (myTuple[0]) if myTuple = ('abcd',786,2.23)? - correct answer ✔✔abcd
17. Which function obtains all the keys from a dictionary? - correct answer ✔✔keys()
18. Which function obtains all the values from a dictionary? - correct answer ✔✔values()
19. Which function converts a string to an int ? - correct answer ✔✔int("string")
20. Which function converts a string to a float ? - correct answer ✔✔float("string")
21. Which function converts a string to a tuple ? - correct answer ✔✔tuple("string")
22. Which function converts a string to a list ? - correct answer ✔✔list("string")
23. Which function converts a sequence of tuples to dictionary ? - correct answer ✔✔dict()