To obtain the distance between the points (40, 50) and (5.5, 4.4), use _________.

A. distance(40, 50, 5.5, 4.4)
B. new Point2D(40, 50).distance(5.5, 4.4)
C. new Point2D(40, 50).distance(new Point2D(5.5, 4.4))
D. new Point2D(5.5, 4.4).distance(40, 50)
E. new Point2D(5.5, 4.4).distance(new Point2D(40, 50))

Respuesta :