InterviewSolution
Saved Bookmarks
| 1. |
Determine the H.C.F of the numbers given by prime factorisation method(3) 48 and 64 |
|
Answer» `48 = 2*2*2*2*3 = 2^4*3` `64 = 2*2*2*2*2*2 = 2^6` HCF will be the common factors of the two numbers. `:.` HCF of `48` and `64 = 2^4 = 16.` |
|