InterviewSolution
Saved Bookmarks
| 1. |
Is 9 and 28 coprime number.(a) True(b) FalseThis question was posed to me in an internship interview.My enquiry is from GCD LCM recursion topic in division Recursion of Data Structures & Algorithms II |
|
Answer» RIGHT option is (a) True The explanation is: Coprime numbers have GCD 1 and LCM is the product of the two given terms. So 9 and 28 are coprime numbers. |
|