InterviewSolution
Saved Bookmarks
| 1. |
Is 9 and 28 coprime number?(a) True(b) FalseThe question was posed to me by my college professor while I was bunking the class.The above asked question is from GCD LCM Recursion, in section Recursion of Data Structures & Algorithms II |
|
Answer» CORRECT choice is (a) True The BEST explanation: COPRIME NUMBERS have GCD 1. So 9 and 28 are coprime numbers. |
|