Q12
What will be the output of the following Python function? hex(15)
A.
f
B.
0xF
C.
0Xf
D.
0xf
AnswerAnswer: Option D
Solution
Answer: Option D
Solution:
The hex() function in Python is used to convert an integer to a lowercase hexadecimal string prefixed with '0x'.When you pass the integer 15 to the hex() function, it returns the hexadecimal representation of 15, which is '0xf'.