

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