InterviewSolution
Saved Bookmarks
| 1. |
Which of the following expressions are meaningful?A. `vecu.(vecvxxvecw)`B. `(vecu.vecv).vecw`C. `(vecu.vecv)vecw`D. `vecuxx(vecv.vecw)` |
|
Answer» Correct Answer - A::C Since `vecvxxvecw` is a vector. Therefore `vecu.(vecvxxvecw)` is a scalar quantity. As `(vecu.vecv)` is a scalar. Therefore `(vecu.vecv).vecw` is not meaningful. But`(vecu.vecv)vecw` is a scalar multiple of `vecw`. So it is meaningful. Since `vecv.vecw` is a scalar. So `vecuxx(vecvxxvecw)` is not meaningful. |
|