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
5.8m questions
7.5m answers