Question: Which of the following statements is true regarding the expression (a + b) mod n?
Options:
Correct Answer: It is always equal to (a mod n) + (b mod n)
Solution:
The property of modular arithmetic states that (a + b) mod n = [(a mod n) + (b mod n)] mod n.