Python Question and Answers – Built-in Functions – 2

Python Multiple Choice Questions & Answers (MCQs) focuses on “Built-in Functions – 2”.

Q 1. What will be the output of the following Python functions?

chr(‘97’)
chr(97)
A. a
Error

B. ‘a’
a
C. Error
a

D. Error
Error

Show Answer Answer:-C. Error a
Explanation The built-in function chr() returns the alphabet corresponding to the value given as an argument. This function accepts only integer type values. In the first function, we have passed a string. Hence the first function throws an error.

Q 2. What will be the output of the following Python function?

complex(1+2j)
A. 1+2j
B. 1
C. 2j
D. Error

Show Answer Answer:-A. 1+2j
Explanation The built-in function complex() returns the argument in a complex form. Hence the output of the function shown above will be 1+2j.

Q 3. What is the output of the function complex()?
A. 0j
B. 0+0j
C. 0
D. Error

Show Answer Answer:-A. 0j
Explanation The complex function returns 0j if both of the arguments are omitted, that is, if the function is in the form of complex() or complex(0), then the output will be 0j.

Q 4. The function divmod(a,b), where both ‘a’ and ‘b’ are integers is evaluated as:
A. (a%b, a//b)
B. (a//b, a%b)
C. (a//b, a*b)
D. (a/b, a%b)

Show Answer Answer:-B. (a//b, a%b)
Explanation The function divmod(a,b) is evaluated as a//b, a%b, if both ‘a’ and ‘b’ are integers.

Q 5. What will be the output of the following Python function?

divmod(10.5,5)
divmod(2.4,1.2)
A. (2.00, 0.50)
(2.00, 0.00)
B. (2, 0.5)
(2, 0)
C. (2.0, 0.5)
(2.0, 0.0)
D. (2, 0.5)
(2)

Show Answer Answer:-C. (2.0, 0.5) (2.0, 0.0)
Explanation See python documentation for the function divmod.

Q 6. The function complex(‘2-3j’) is valid but the function complex(‘2 – 3j’) is invalid.
A. True
B. False

Show Answer Answer:-A. True
Explanation When converting from a string, the string must not contain any blank spaces around the + or – operator. Hence the function complex(‘2 – 3j’) will result in an error.

Q 7. What will be the output of the following Python function?

list(enumerate([2, 3]))
A. Error
B. [(1, 2), (2, 3)]
C. [(0, 2), (1, 3)]
D. [(2, 3)]

Show Answer Answer:-C. [(0, 2), (1, 3)]
Explanation The built-in function enumerate() accepts an iterable as an argument. The function shown in the above case returns containing pairs of the numbers given, starting from 0. Hence the output will be: [(0, 2), (1,3)].

Q 8. What will be the output of the following Python functions?

x=3
eval(‘x^2’)
A. Error
B. 1
C. 9
D. 6

Show Answer Answer:-B. 1
Explanation The function eval is use to evaluate the expression that it takes as an argument. In the above case, the eval() function is used to perform XOR operation between 3 and 2. Hence the output is 1.

Q 9. What will be the output of the following Python functions?

float(‘1e-003’)
float(‘2e+003’)
A. 3.00
300
B. 0.001
2000.0
C. 0.001
200
D. Error
2003

Show Answer Answer:-B. 0.001 2000.0
Explanation The output of the first function will be 0.001 and that of the second function will be 2000.0. The first function created a floating point number up to 3 decimal places and the second function adds 3 zeros after the given number.

Q 10. Which of the following functions does not necessarily accept only iterables as arguments?
A. enumerate()
B. all()
C. chr()
D. max()

Show Answer Answer:-C. chr()
Explanation The functions enumerate(), all() and max() accept iterables as arguments whereas the function chr() throws an error on receiving an iterable as an argument. Also note that the function chr() accepts only integer values.

Posted

in

by

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

You cannot copy content of this page