InterviewSolution
Saved Bookmarks
| 1. |
Let S = {a, b, c}, find the total number of binary operations on S. |
|
Answer» The number of binary operations on the set consisting n elements is \(n^{n^2}\) . Here n = 3. Therefore, total number of binary operation S = \((3)^{3^2}\) = 39. |
|