InterviewSolution
Saved Bookmarks
| 1. |
Find the distance between the following pof points :(1) (-3, 6) and (2, 6) |
|
Answer» Distance between two points=√(x2-x1)^2+(y2-y1)^2=√(2+3)^2+(-6-6)^2=√5^2+12^2=√25+144=√169=13 |
|