InterviewSolution
Saved Bookmarks
| 1. |
State whether the following statements are true or false. Justify If ** is a commutative binary operation on N, then a**(b**c)=(c**b)**a |
|
Answer» SOLUTION :`a**(b**C)=a**(c**b)=(c**b)**a,` for all `a,b,c in N` `THEREFORE ` The given STATEMENT is TRUE |
|