InterviewSolution
Saved Bookmarks
| 1. |
If `a+b+c=0`, then find the value of `sqrt(x^a.x^b.x^c)`. |
|
Answer» Correct Answer - B Given `a+b+c=0`. `sqrt(x^ax^b.x^c)` `=sqrt(x^(a+b+c))=sqrt(x^0)=sqrt(1)=1` Hence, the correct options is (b). |
|