M
Q. What is the output of the following program?
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))
Be the first to start discuss.
Related MCQs
Q. --------- provides the technical how to building software.
Q. LILO’s configuration file is
Q. _____________ categorizes class operations based on the generic function that each performs
Q. A PC not connected to a network is equivalent to
Q. In is response thats late is incorrect and
Q. The network layer issues request to which layer?
Q. Find out wrong stament of Body Area Network...............
Q. In a general 8-bit parallel interface, the INTR line is connected to
Discusssion
Login to discuss.