

InterviewSolution
Saved Bookmarks
1. |
If a and b are two prime numbers then find the HCF(a, b) |
Answer» Prime factorization: a = a b = b HCF = product of smallest power of each common factor in the numbers = 1 Thus, HCF(a,b) = 1 |
|