Python Programming (2180711) MCQs

MCQs of Introduction to Python

Showing 81 to 90 out of 170 Questions
81.
Which of the following formatting options can be used in order to add ‘n’ blank spaces after a given string ‘S’?
(a) print(“-ns”%S)
(b) print(“-ns”%S)
(c) print(“%ns”%S)
(d) print(“%-ns”%S)
Answer:

Option (d)

82.
What will be the output of the following Python expression if X = -122? print(""-%06d""%x)
(a) -000122
(b) 000122
(c) --00122
(d) -00122
Answer:

Option (c)

83.
What will be the output of the following Python expression if the value of x is 34? print(“%f”%x)
(a) 34.00
(b) 34.0000
(c) 34.000000
(d) 34.00000000
Answer:

Option (c)

84.
What will be the output of the following Python expression if x=56.236? print(""%.2f""%x)
(a) 56
(b) 56.24
(c) 56.23
(d) 56.236
Answer:

Option (b)

85.
What will be the output of the following Python expression if x=22.19? print(""%5.2f""%x)
(a) 22.1900
(b) 22.00000
(c) 22.19
(d) 22.20
Answer:

Option (c)

86.
The expression shown below results in an error. print(""-%5d0"",989)
(a) TRUE
(b) FALSE
Answer:

Option (b)

87.
What will be the output of the following Python code snippet? '%d %s %g you' %(1, 'hello', 4.0)
(a) Error
(b) 1 hello you 4.0
(c) 1 hello 4 you
(d) 1 4 hello you
Answer:

Option (c)

88.
The output of which of the codes shown below will be: “There are 4 blue birds.”?
(a) ‘There are %g %d birds.’ %4 %blue
(b) ‘There are %d %s birds.’ %(4, blue)
(c) ‘There are %s %d birds.’ %[4, blue]
(d) ‘There are %d %s birds.’ 4, blue
Answer:

Option (b)

89.
What will be the output of the python code shown below for various styles of format specifiers? x=1234 res='integers:...%d...%-6d...%06d' %(x, x, x) res
(a) ‘integers:…1234…1234 …001234’
(b) ‘integers…1234…1234…123400’
(c) ‘integers:… 1234…1234…001234’
(d) ‘integers:…1234…1234…001234’
Answer:

Option (a)

90.
What will be the output of the following Python code snippet? x=3.3456789 '%f | %e | %g' %(x, x, x)
(a) Error
(b) ‘3.3456789 | 3.3456789+00 | 3.345678’
(c) ‘3.345678 | 3.345678e+0 | 3.345678’
(d) ‘3.345679 | 3.345679e+00 | 3.34568’
Answer:

Option (d)

Showing 81 to 90 out of 170 Questions