+2 votes
in Python by
What is the answer to this expression, 22 % 3 is?

a) 7

b) 0

c) 1

d) 5

1 Answer

0 votes
by

c) 1

Modulus operator gives the remainder. So, 22%3 gives the remainder, that is, 1.

Related questions

0 votes
asked Jan 11, 2021 in Python by SakshiSharma
0 votes
asked May 23, 2020 in Python by sharadyadav1986
...