InterviewSolution
Saved Bookmarks
| 1. |
The following steps are involved in finding the value of `((x^a)/(x^b))((x^b)/(x^c))((x^c)/(x^a))`. Arrange them in sequential order. (A) `x^0=1` (B) `x^(a-b+b-c+c-a)` (C) `((x^a)/(x^b))((x^b)/(x^c))((x^c)/(x^a))=x^(a-b).x^(b-c).x^(c-a)`A. CBAB. ACBC. BCAD. CAB |
|
Answer» Correct Answer - A (C),(B), and (A), is the required sequential oreder. Hence, the correct options is (a). |
|