

InterviewSolution
Saved Bookmarks
1. |
If `vec(A)` and `vec(B)` are two vectors, which of the following is not correct?A. `vec(A)+vec(B)= vec(B)+vec(A)`B. `vec(A).vec(B)= vec(B).vec(A)`C. `vec(A)xxvec(B)= vec(B)xxvec(A)`D. `vec(A)-vec(B)= -(vec(B)-vec(A))` |
Answer» Correct Answer - C Vector product of two vectors in not commulative. i.e., `vec(A)xxvec(B)!=vec(B)xxvec(A)` `vec(A)xxvec(B)= -vec(B)xxvec(A)` |
|