InterviewSolution
Saved Bookmarks
| 1. |
Constructiona composition table for binary operation ^^ defined asa ^^ b= minimum of {a,b} in the set {1,2,3,4,5} and (i) evaluate (2 ^^ 3) ^^4 and 2^^ (3^^ 4) (ii) is ^^ commutative ? |
|
Answer» (i) (2*3)*4=2,2*(3*4)=2 `""` (II) * is commutative |
|