Respuesta :
Answer:
The correct answer for the given question is x contains an object of the circle type.
Explanation:
Here "circle" is a class and x is the object of the circle class .
Object can call the all the method of "circle" class.
The object of class Circle is created with the help of " new " keyword
following are the example of class and object
class Circle
{
public static void main(String args[])
{
Circle x = new Circle(); // creating object of circle class
}
}
The declaration is an illustration of objects.
The most accurate statement is (c) x contains an object of the Circle type.
To create an object in Java, we make use of the following syntax:
Object variable = new Object();
This means that,
Circle x = new Circle();
The above declaration will create a circle object named x.
Hence, the true statement is (c)
Read more about objects at:
https://brainly.com/question/4674083