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

User Voiger
by
6.6k 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

User Tallpaul
by
5.6k points