

InterviewSolution
Saved Bookmarks
1. |
Find the distance between the pairs of points:(-4, -3), (-8, -3) |
Answer» Given points = A (- 4, – 3) and B (- 8, – 3) These two points lie on the line parallel to X – axis. ∴ Distance between A (- 4, – 3) and B (- 8, – 3) = |x2 – x1| = |-8 – (-4)| = |-8 + 4| = |-4| = 4 units. |
|