51. What will be the output of the following Python code?
hex(255), int('FF', 16), 0xFF
hex(255), int('FF', 16), 0xFFhex(255), int('FF', 16), 0xFF'%.2f%s' % (1.2345, 99)'%(qty)d more %(food)s' %{'qty':1, 'food': 'spam'}X=”Exam-Veda”
print(“%56s”,X)def f(p, q):
return p%q
f(0, 2)
f(2, 0)print("%.2f"%x)