InterviewSolution
Saved Bookmarks
| 1. |
GCD(a,b) is the same as GCD(|a|,|b|).(a) True(b) FalseThe question was posed to me in homework.The origin of the question is Number Theory in section Basic Concepts in Number Theory and Finite Fields of Cryptograph & Network Security |
|
Answer» CORRECT answer is (a) True Easy explanation: This is true. gcd(60,24) = gcd(60,-24) = 12. |
|