Answer:
Hi there!
The distance L between two points (x1, y1) and (x2, y2) in two-dimensional plane could be calculated by:
L = sqrt((y2 - y1)^2 + (x2 - x1)^2)
The distance between two points (-5, 4) and (3, -2) can therefore be calculated by:
L = sqrt( (-2 - 4)^2 + (3 - -5)^2) = sqrt( 6^2 + 8^2) = sqrt(36 + 64) = sqrt(100 ) = 10
=> Option C is correct.
Hope this helps!
:)