#1
Which of the following data types is mutable in Python?
1 answered
#2What will be the output of the following code?
What will be the output of the following code?
```
print(2 + 2 * 3 - 2 / 2)
1 answered
#3
What is the purpose of the 'pass' statement in Python?
1 answered
#4What is the output of the following code?
What is the output of the following code?
```
print(10 / 2)
1 answered
#5
Which of the following is not a valid data type in Python?
1 answered
#6
Which of the following statements is true regarding Python's 'pass' statement?
1 answered
#7What is the output of the following code?
What is the output of the following code?
```
my_list = [1, 2, 3]
print(my_list[3])
1 answered
#8
What is the time complexity of searching for an element in a binary search tree (BST) in the worst-case scenario?
1 answered
#9
Which of the following sorting algorithms has the worst-case time complexity of O(n^2)?
1 answered
#10What will be the output of the following code?
What will be the output of the following code?
```
def foo(x, y=[]):
y.append(x)
return y
print(foo(1))
print(foo(2))
1 answered
#11What will be the output of the following code?
What will be the output of the following code?
```
print('hello'.capitalize())
1 answered
#12
In Python, what is the result of '10' == 10?
1 answered
#13
What does the 'self' keyword represent in Python class methods?
1 answered
#14
Which of the following statements is true about Python's garbage collection?
1 answered
#15
What is the purpose of the 'yield' keyword in Python?
1 answered
#16
Which of the following statements is true about Python's 'lambda' functions?
1 answered
#17
What does the 'super()' function do in Python?
1 answered