πŸ“Š Python
Q. What is the output of the following program?
Code:
import sys
L1 = tuple()
print(sys.getsizeof(L1), end = " ")
L1 = (1, 2)
print(sys.getsizeof(L1), end = " ")
L1 = (1, 3, (4, 5))
print(sys.getsizeof(L1), end = " ")
L1 = (1, 2, 3, 4, 5, [3, 4], 'p', '8', 9.777, (1, 3))
print(sys.getsizeof(L1))
  • (A) 0 2 3 10
  • (B) 32 34 35 42
  • (C) 48 64 72 128
  • (D) 48 144 192 480
πŸ’¬ Discuss
βœ… Correct Answer: (C) 48 64 72 128
πŸ“Š Python
Q. What is the output of the following program?
Code:
T = (1, 2, 3, 4, 5, 6, 7, 8)
print(T[T.index(5)], end = " ")
print(T[T[T[6]-3]-6])
  • (A) 4 0
  • (B) 5 8
  • (C) 5 IndexError
  • (D) 4 1
πŸ’¬ Discuss
βœ… Correct Answer: (B) 5 8
πŸ“Š Python
Q. What is the output of the following program?
Code:
L = [1, 3, 5, 7, 9]
print(L.pop(-3), end = ' ')
print(L.remove(L[0]), end = ' ')
print(L)
  • (A) 5 None [3, 7, 9]
  • (B) 5 1 [3, 7, 9]
  • (C) 5 1 [3, 7, 9]
  • (D) 5 None [1, 3, 7, 9]
πŸ’¬ Discuss
βœ… Correct Answer: (A) 5 None [3, 7, 9]
πŸ“Š Python
Q. What is the output of the following program? def REVERSE(L):
Code:
L.reverse()
return(L)
def YKNJS(L):
List = list()
List.extend(REVERSE(L))
print(List)
L = [1, 3.1, 5.31, 7.531]
YKNJS(L)
  • (A) [1, 3.1, 5.31, 7.531]
  • (B) [7.531, 5.31, 3.1, 1]
  • (C) IndexError
  • (D) AttributeError: β€žNoneType? object has no attribute β€žREVERSE?
πŸ’¬ Discuss
βœ… Correct Answer: (B) [7.531, 5.31, 3.1, 1]
πŸ“Š Python
Q. What is the output of the following program?
Code:
from math import sqrt
L1 = [x**2 for x in range(10)].pop()
L1 + = 19
print(sqrt(L1), end = " ")
L1 = [x**2 for x in reversed(range(10))].pop()
L1 + = 16
print(int(sqrt(L1)))
  • (A) 10.0 4.0
  • (B) 4.3588 4
  • (C) 10 .0 4
  • (D) 10.0 0
πŸ’¬ Discuss
βœ… Correct Answer: (C) 10 .0 4
πŸ“Š Python
Q. What is the output of the following program?
Code:
D = dict()
for x in enumerate(range(2)):
D[x[0]] = x[1]
D[x[1]+7] = x[0]
print(D)
  • (A) KeyError
  • (B) {0: 1, 7: 0, 1: 1, 8: 0}
  • (C) {0: 0, 7: 0, 1: 1, 8: 1}
  • (D) {1: 1, 7: 2, 0: 1, 8: 1}
πŸ’¬ Discuss
βœ… Correct Answer: (C) {0: 0, 7: 0, 1: 1, 8: 1}
πŸ“Š Python
Q. What is the output of the following program?
Code:
D = {1 : 1, 2 : '2', '1' : 1, '2' : 3}
D['1'] = 2
print(D[D[D[str(D[1])]]])
  • (A) 2
  • (B) 3
  • (C) β€ž2?
  • (D) KeyError
πŸ’¬ Discuss
βœ… Correct Answer: (B) 3
πŸ“Š Python
Q. What is the output of the following program?
Code:
D = dict()
for i in range (3):
for j in range(2):
D[i] = j
print(D)
  • (A) {0: 0, 1: 0, 2: 0}
  • (B) {0: 1, 1: 1, 2: 1}
  • (C) {0: 0, 1: 0, 2: 0, 0: 1, 1: 1, 2: 1}
  • (D) TypeError: Immutable object
πŸ’¬ Discuss
βœ… Correct Answer: (B) {0: 1, 1: 1, 2: 1}
πŸ“Š Python
Q. What is the output of the following program?
Code:
from math import *
a = 2.13
b = 3.7777
c = -3.12
print(int(a), floor(b), ceil(c), fabs(c))
  • (A) 2 3 -4 3
  • (B) 2 3 -3 3.12
  • (C) 2 4 -3 3
  • (D) 2 3 -4 3.12
πŸ’¬ Discuss
βœ… Correct Answer: (B) 2 3 -3 3.12
πŸ“Š Python
Q. What is the output of the following program?
Code:
import string
import string
Line1 = "And Then There Were None"
Line2 = "Famous In Love"
Line3 = "Famous Were The Kol And Klaus"
Line4 = Line1 + Line2 + Line3
print(string.find(Line1, 'Were'), string.count((Line4), 'And'))
  • (A) True 1
  • (B) 15 2
  • (C) (15, 2)
  • (D) True 2
πŸ’¬ Discuss
βœ… Correct Answer: (C) (15, 2)