A=16
B=15
a%b//a
Recursion and iteration are the same programming approach.
What are the built-in type does python provides?
Which of the following statements is used to create an empty set?
Which of the following Python set functions cannot be used on heterogeneous sets?
To insert 5 to the third position in list1, we use which command?
Given the following Python code:
a = [1, 2, 3, 4, 5]
b = [1, 2, 3]
print(a + b)
Which one of the following has the same precedence level?
What will be the output of the following Python code snippet?
a={1:"A",2:"B",3:"C"}
print(a.setdefault(3))
What will be the output of the following Python code?
a = [1, 5, 7, 9, 9, 1]
<br class="blank" />b=a[0]
<br class="blank" />x= 0
for x in range(1, len(a)):
if a[x] > b:
b = a[x]
b= x
print(b)