pls reply only crt ans
Attachments:
Answers
Answered by
0
Answer:
correct answer is (1). 2
Explanation:
please mark me as a brainlist
Answered by
3
Answer:
The correct answer is Option (1) 2
___________
Explanation:
In python, there is three kind of division operator
'//':-
This returns only the quotient of the number when divided
Example:- 22//7 #Here in this statement the output will be 3 not 3.142..
'/':-
In this case, the number is completely divided. In other words, it return the output in decimals.
Example:- 22/7 #Here in this case the output will be in decimals that is 3.142... not 3.
'%':-
This operator is also known as modulus/mod operator. it returns the remainder of the number when divided
Example:- 22%7 #Here in this case, the output is 1 because it returns the remainder of the number when divided
Similar questions