

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