Report Bug
Qus : What will the value of a if a=~100
Qusयदि a=~100 है तो a का मान क्या है?

A. 100
B. -100
C. -101
D. 101


Solution
C. -101



Explanation
In Python, the tilde (~) is a bitwise NOT operator. It is used to invert the bits of an integer, changing 0s to 1s and 1s to 0s.



Report Bug