Answer:
II only
Step-by-step explanation:
When you look at I, you can see that it assigns the center object with the default values, x=0 and y=0. However, we must assign the values of a and b.
When you look at III, you can see that it tries to access the private variables of the Point class, x and y, directly. This is not allowed. It will give an error actually.
When you look at II, you can see that it assigns the values a and b to center, and r to the radius as expected.