Multiple Choice
For the following code, which statement is NOT true?
Public class Circle
{
Private double radius;
Public double x;
Private double y;
}
A) x is available to code that is written outside the Circle class.
B) radius is not available to code written outside the Circle class.
C) radius, x, and y are called members of the Circle class.
D) y is available to code that is written outside the Circle class.
Correct Answer:

Verified
Correct Answer:
Verified
Q3: An object can store data.
Q11: Which of the following statements will create
Q26: The java.lang package is automatically imported into
Q33: Two or more methods in a class
Q35: In a UML diagram to indicate the
Q37: Java allows you to create objects of
Q39: Another term for an object of a
Q41: A method that gets a value from
Q42: It is common practice in object-oriented programming
Q43: The public access specifier for a field