Solved

For the Following Code, Which Statement Is Not True

Question 33

Multiple Choice

For the following code, which statement is not true?
public class Circle
{
Private double radius;
Public double x;
Private double y;
}


A) The y field is available to code written outside the Circle class.
B) The radius field is not available to code written outside the Circle class.
C) The radius, x, and y fields are members of the Circle class.
D) The x field is available to code that is written outside the Circle class.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions