InterviewSolution
Saved Bookmarks
| 1. |
Let * be a ‘binary’ operation on N given by a * b = LCM (a, b) for all a, b ∈ N. Find 5 * 7. |
|
Answer» 5 * 7 = LCM of 5 and 7 = 35 |
|