InterviewSolution
Saved Bookmarks
| 1. |
Find the number of ways of expressing 10 as a product of co-prime factors. |
|
Answer» Solution :`10 = 2xx5` The REQUIRED NUMBR of ways = `2^(2-1) = 2` `(1xx10), (2xx5)` are two different ways in which 10 can be EXPRESSED as a PRODUCT of co-prime factors. |
|