asked 74.3k views
3 votes
What is the remainder after you divide 7*7*7... 124 times by 4

asked
User Voiger
by
9.2k points

1 Answer

3 votes

Answer:

1

Explanation:

Remainder if 7*7*7... 124 times is divided by 4

The remainder when (7^124) / 4

Using python console:

a = 7**124

b = 4

c = a%b

print(c)

Output = 1

Hence, the remainder when 7^124 is divided by 4 is 1

answered
User Tallpaul
by
8.5k points

No related questions found

Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.