Report Bug
Qus : What will be displayed by print(ord(‘b’) – ord(‘a’))?
Qusprint(ord (‘b') - ord ('a’)) क्या डिस्प्ले करेगा?

A. 0
B. 1
C. -1
D. 2


Solution
B. 1



Explanation
ASCII value of b is one more than a. Hence the output of this code is 98-97, which is equal to 1.



Report Bug