

InterviewSolution
Saved Bookmarks
1. |
Find the distance between points ‘O’(origin) and ‘A’ (7, 4). |
Answer» Given: Origin and a point (7, 4). Distance of a point (x, y) from the origin is \(\sqrt{x^2+y^2}\) = \(\sqrt{7^2+4^2}\) = \(\sqrt{49+16}\) = \(\sqrt{65}\) units. |
|