

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