swim
He at the beach later.
Which sentence is correct?
| Select the correct answer for the indirect question |
| indirect questionIs he all right? - I do not know _________________. |
not / do
We anything special tomorrow night.
Suppose listExample is [3, 4, 5, 20, 5, 25, 1, 3], what is list1 after listExample.pop()?
a) [3, 4, 5, 20, 5, 25, 1]b) [1, 3, 3, 4, 5, 5, 20, 25]c) [3, 5, 20, 5, 25, 1, 3]d) [1, 3, 4, 5, 20, 5, 25]
Suppose list1 is [2, 33, 222, 14, 25], What is list1[-1]?
a) Errorb) Nonec) 25d) 2
What will be the output after running the following code?
def func(mylist): mylist[3]="strawberries"
lst = ["bananas","apples","pears","peas"]func(lst)print(lst)
A. ['bananas', 'apples', 'strawberries', 'peas']B. ['bananas', 'apples', 'pears', 'strawberries']C. ['bananas', 'apples', 'strawberries']D. ['strawberries', 'strawberries', 'strawberries']