InterviewSolution
Saved Bookmarks
| 1. |
[(a mod n) – (b mod n)] mod n = (b – a) mod n(a) True(b) FalseThe question was asked by my school principal while I was bunking the class.Question is taken from Number Theory in chapter Basic Concepts in Number Theory and Finite Fields of Cryptograph & Network Security |
|
Answer» RIGHT CHOICE is (b) FALSE Easy explanation: The EQUIVALENCE is false and can be checked by substituting values. The CORRECT equivalence would be [(a mod n) – (b mod n)] mod n = (a – b) mod n. |
|