

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