| 1.) What is the output when we execute list("hello")? | | Options are: | | A.) ['hello']
| | B.) ['h', 'e', 'l', 'l', 'o']
| | C.) ['llo']
| | D.) ['olleh']
| | Correct Option: B | | | | | | | 2.) Suppose listExample is ['h','e','l','l','o'], what is len(listExample)? | | Options are: | | A.) None
| | B.) 5
| | C.) Error
| | D.) 4
| | Correct Option: B | | | | | | | 3.) Suppose list1 is [2445,133,12454,123], what is max(list1)?
| | Options are: | | A.) 2445
| | B.) 123
| | C.) 12454
| | D.) 133
| | Correct Option: C | | | | | | | 4.) Suppose list1 is [3, 5, 25, 1, 3], what is min(list1)? | | Options are: | | A.) 1
| | B.) 5
| | C.) 25
| | D.) 3
| | Correct Option: A | | | | | | | 5.) Suppose list1 is [1, 5, 9], what is sum(list1)?
| | Options are: | | A.) 9
| | B.) 3
| | C.) 1
| | D.) 15
| | Correct Option: D | | | | | | |