What will be the output of the following Python function?
hex(15)
hex(15)A. f
B. 0xF
C. 0Xf
D. 0xf
Answer: Option D
Solution (By Examveda Team)
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'.

Join The Discussion