Python में print(5*(2//3)) का आउटपुट क्या होगा?
What will be the output of print(5*(2//3)) in Python?
A
0
B
1
C
3
D
5
Explanation
print(5 * (2 // 3))
2 // 3 → Floor division है, जो पूर्णांक भाग (integer part) देता है:
🔸 2 // 3 = 0 (क्योंकि 2 को 3 से divide करने पर भाग 0 आता है)
फिर:
5 * 0 = 0
In English:
// is floor division.
2 // 3 = 0, so 5 * 0 = 0
Correct Answer: A) 0