InterviewSolution
Saved Bookmarks
| 1. |
यदि `x=sqrt(3)+sqrt(2)` है तो `(x+1/x)` का मान ज्ञात करें।A. `2sqrt(2)`B. `2sqrt(3)`C. `2`D. `3` |
|
Answer» Correct Answer - B `x=sqrt(3)+sqrt(2)` `1/x=1/(sqrt(3)+sqrt(2))xx(sqrt(3)-sqrt(2))/(sqrt(3)-sqrt(2))=sqrt(3)-sqrt(2)` `x=1/x=sqrt(3)+sqrt(2)+sqrt(3)-sqrt(2)=2sqrt(3)` |
|