यदि A = 16 और B = 15 है तो नीचे दिए गए व्यंजक का मूल्यांकन करें।
Evaluate the expression given below if A = 16 and B = 15.
A % B // A
A)
B)
C)
D)
Explanation:
- Modulo (
%
):16 % 15 = 1
- Floor division (
//
):1 // 16 = 0
So, the result is 0.
Answer: (B) 0