Test Series - python

Test Number 11/108

Q: What will be the output of the following Python code snippet?

X=”hi”
print(“05d”%X)
A. 00000hi
B. 000hi
C. hi000
D. error
Solution: The code snippet shown above results in an error because the above formatting option works only if ‘X’ is a number. Since in the above case ‘X’ is a string, an error is thrown.
Q: What will be the output of the following Python code snippet?

X=”san-foundry”
print(“%56s”,X)
A. 56 blank spaces before san-foundry
B. 56 blank spaces before san and foundry
C. 56 blank spaces after san-foundry
D. no change
Solution: The formatting option print(“%Ns”,X) helps us add ‘N’ number of spaces before a given string ‘X’. Hence the output for the code snippet shown above will be 56 blank spaces before the string “san-foundry”.
Q:  What will be the output of the following Python expression if x=456?

print("%-06d"%x)
A. 000456
B. 456000
C. 456
D. error
Solution: The expression shown above results in the output 456.
Q: What will be the output of the following Python expression if X=345?

print(“%06d”%X)
A. 345000
B. 000345
C. 000000345
D. 345000000
Solution: The above expression returns the output 000345. It adds the required number of zeroes before the given number in order to make the number of digits 6 (as specified in this case).
Q: 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)
Solution: In order to add ‘n’ blank spaces after a given string ‘S’, we use the formatting option:(“%-ns”%S).
Q: What will be the output of the following Python expression if X = -122?

print("-%06d"%x)
A. -000122
B. 000122
C. –00122
D. -00122
Solution: The given number is -122. Here the total number of digits (including the negative sign) should be 6 according to the expression. In addition to this, there is a negative sign in the given expression. Hence the output will be – -00122.
Q: 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
Solution: The expression shown above normally returns the value with 6 decimal points if it is not specified with any number. Hence the output of this expression will be: 34.000000 (6 decimal points).
Q: What will be the output of the following Python expression if x=56.236?

print("%.2f"%x)
A. 56.00
B. 56.24
C. 56.23
D. 0056.236
Solution: The expression shown above rounds off the given number to the number of decimal places specified. Since the expression given specifies rounding off to two decimal places, the output of this expression will be 56.24. Had the value been x=56.234 (last digit being any number less than 5), the output would have been 56.23.
Q: 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
Solution: The output of the expression above will be 22.19. This expression specifies that the total number of digits (including the decimal point) should be 5, rounded off to two decimal places.
Q: The expression shown below results in an error.

print("-%5d0",989)
A. True
B. False
C. ...
D. ...
Solution: The expression shown above does not result in an error. The output of this expression is -%5d0 989. Hence this statement is incorrect.

You Have Score    /10