96). What will be the output of the following Python code snippet?
X=”hi”
print(“05d”%X)
[A]00000hi
[B]000hi
[C]hi000
[D]error
Show Answer
Correct Answer: error
Notes:
Answer: d
Explanation: 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.
97). 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
Show Answer
Correct Answer: 56 blank spaces before san-foundry
Notes:
Answer: a
Explanation: 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”.
98). What will be the output of the following Python expression if x=456?
print("%-06d"%x)
[A]000456
[B]456000
[C]456
[D]error
Show Answer
Correct Answer: 456
Notes:
Answer: c
Explanation: The expression shown above results in the output 456.
99). What will be the output of the following Python expression if X=345?
print(“%06d”%X)
[A]345000
[B]000345
[C]000000345
[D]345000000
Show Answer
Correct Answer: 000345
Notes:
Answer: b
Explanation: 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).
100). Which of the following formatting options can be used in order to add ‘n’ blank spaces after a given string ‘S’?
print(“%06d”%X)
[A]print(“-ns”%S)
[B]print(“-ns”%S)
[C]print(“%ns”%S)
[D]print(“%-ns”%S)
Show Answer
Correct Answer: print(“%-ns”%S)
Notes:
Answer: d
Explanation: In order to add ‘n’ blank spaces after a given string ‘S’, we use the formatting option:(“%-ns”%S).
101). What will be the output of the following Python expression if X = -122?
print("-%06d"%x)
[A]-000122
[B]000122
[C]–00122
[D]-00122
Show Answer
Correct Answer: –00122
Notes:
Answer: c
Explanation: 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.
102). 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
Show Answer
Correct Answer: 34.000000
Notes:
Answer: c
Explanation: 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).
103). 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
Show Answer
Correct Answer: 56.24
Notes:
Answer: b
Explanation: 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.
104). 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
Show Answer
Correct Answer: 22.19
Notes:
Answer: c
Explanation: 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.
105). The expression shown below results in an error.
print("-%5d0",989)
[A]True
[B]False
[C]none
[D]1
Show Answer
Correct Answer: False
Notes:
Answer: b
Explanation: The expression shown above does not result in an error. The output of this expression is -%5d0 989. Hence this statement is incorrect.