Login
Remember
Register
Ask a Question
What is the answer to this expression, 22 % 3 is?
+2
votes
asked
Jan 1, 2022
in
Python
by
sharadyadav1986
What is the answer to this expression, 22 % 3 is?
a) 7
b) 0
c) 1
d) 5
python-expression
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 1, 2022
by
sharadyadav1986
c) 1
Modulus operator gives the remainder. So, 22%3 gives the remainder, that is, 1.
...