For the following code, which statement is NOT true? public class Circle { private double radius; public double x; private double y: } O radius, x, and y are called fields of the Circle class. O radius is not available to code written outside the Circle class. O x is available to code that is written outside the Circle class. The Circle class has a constructor public Circle(double radius, double x, double y) {...}