व्यंजक 34 // 5 + 34 % 5 का परिणाम क्या है?
What is the result of the expression 34 // 5 + 34 % 5?
A)
B)
C)
D)
Explanation:
Let's break down the expression step by step:
Expression: 34 // 5 + 34 % 5
-
Floor Division (
//
):34 // 5
is the quotient of 34 divided by 5, ignoring the remainder.34 // 5 = 6
-
Modulo (
%
):34 % 5
gives the remainder when 34 is divided by 5.34 % 5 = 4
-
Addition:
6 + 4 = 10
So, the result is 10.
Answer: (C) 10