Rotate the point (9, 5) on a geometric figure 270 degrees clockwise. What is the new point?(1 point)

To rotate a point 270 degrees clockwise, you can swap the x and y coordinates and negate the new x coordinate.

The original point is (9, 5). Swapping the coordinates gives (5, 9), and negating the x coordinate gives (-5, 9).

Therefore, the new point is (-5, 9).