Python Programming (2180711) MCQs

MCQs of Introduction to Python

Showing 101 to 110 out of 170 Questions
101.
The output of the two codes shown below is the same. i. '{0:.2f}'.format(1/3.0) ii. '%.2f'%(1/3.0)
(a) TRUE
(b) FALSE
Answer:

Option (a)

102.
What will be the output of the following Python code? l=list('HELLO') 'first={0[0]}, third={0[2]}'.format(l)
(a) ‘first=H, third=L’
(b) ‘first=0, third=2’
(c) Error
(d) ‘first=0, third=L’
Answer:

Option (a)

103.
What will be the output of the following Python code? l=list('HELLO') p=l[0], l[-1], l[1:3] 'a={0}, b={1}, c={2}'.format(*p)
(a) Error
(b) “a=’H’, b=’O’, c=(E, L)”
(c) “a=H, b=O, c=[‘E’, ‘L’]”
(d) Junk value
Answer:

Option (c)

104.
The formatting method {1:<10} represents the ___________ positional argument, _________ justified in a 10 character wide field.
(a) first, right
(b) second, left
(c) first, left
(d) second, right
Answer:

Option (b)

105.
The output of the two codes shown below is the same. bin((2**16)-1) '{}'.format(bin((2**16)-1))
(a) TRUE
(b) FALSE
Answer:

Option (a)

106.
What will be the output of the following Python code? '{a}{b}{a}'.format(a='hello', b='world')
(a) ‘hello world’
(b) ‘hello’ ‘world’ ‘hello’
(c) ‘helloworldhello’
(d) ‘hello’ ‘hello’ ‘world’
Answer:

Option (c)

107.
What will be the output of the following Python code? D=dict(p=‘gtu’, q=‘chandkheda’) '{p}{q}'.format(**D)
(a) Error
(b) gtuchandkheda
(c) gtu chandkheda
(d) {‘gtu’, ‘chandkheda’}
Answer:

Option (b)

108.
What will be the output of the following Python code? 'The {} side {1} {2}'.format('bright', 'of', 'life')
(a) Error
(b) ‘The bright side of life’
(c) ‘The {bright} side {of} {life}’
(d) No output
Answer:

Option (a)

109.
What will be the output of the following Python code? '{0:f}, {1:2f}, {2:05.2f}'.format(1.23456, 1.23456, 1.23456)
(a) Error
(b) ‘1.234560, 1.22345, 1.23’
(c) No output
(d) ‘1.234560, 1.234560, 01.23’
Answer:

Option (d)

110.
What will be the output of the following Python code? '%.2f%s' % (1.2345, 99)
(a) ‘1.2345’, ‘99’
(b) ‘1.2399’
(c) ‘1.234599’
(d) 1.23, 99
Answer:

Option (b)

Showing 101 to 110 out of 170 Questions