logo

Crowdly

Browser

Add to Chrome

Questions Bank (1239069 total)

  swim

He  at the beach later.

Image failed to load

View this question

Which sentence is correct?

0%
0%
0%
View this question

Select the correct answer for the indirect question

indirect question

Is he all right? - I do not know _________________.

View this question

Complete the sentences and questions in the present continuous tense using the correct form of the verb in bold

 not / do

We     anything special tomorrow night.

Image failed to load

View this question
Tornadoes differ ___ normal storms because in a tornado the wind moves in a circle.
0%
0%
100%
0%
View this question
After a night of severe weather conditions, the whole city was covered ___ ice and snow.
0%
0%
0%
0%
View this question

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]

View this question

Suppose list1 is [2, 33, 222, 14, 25], What is list1[-1]?

a) Error

b) None

c) 25

d) 2

View this question
We could hardly see the path in front of us in the ___ because the snow was so heavy.
0%
0%
0%
0%
View this question

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']

View this question