subject
Computers and Technology, 06.05.2020 00:11 llolo8

Consider the following class declarations.

public class Point
{
private double x; // x-coordinate
private double y; // y-coordinate

public Point()
{
x = 0;
y = 0;
}
public Point(double a, double b)
{
x = a;
y = b;
}

// There may be instance variables, constructors, and methods that are not shown.
}

public class Circle
{
private Point center;
private double radius;
/** Constructs a circle where (a, b) is the center and r is the radius.
*/
public Circle(double a, double b, double r)
{
/* missing code */
}
}
Which of the following replacements for /* missing code */ will correctly implement the Circle constructor?

I.
center = new Point();
radius = r;
II.
center = new Point(a, b);
radius = r;
III.
center = new Point();
center. x = a;
center. y = b;
radius = r;

A. III only

B. I, II, and III

C. II and III only

D. I only

II only

ansver
Answers: 3

Other questions on the subject: Computers and Technology

image
Computers and Technology, 22.06.2019 08:00, wgdelgado
What is the first step in creating a maintenance ?
Answers: 2
image
Computers and Technology, 22.06.2019 13:00, cookie1701
Why the bear has a slunky tail determine the meaning of the word slunk in the story
Answers: 1
image
Computers and Technology, 23.06.2019 06:30, darlene93
You are consulting for a beverage distributor who is interested in determining the benefits it could achieve from implementing new information systems. what will you advise as the first step?
Answers: 1
image
Computers and Technology, 23.06.2019 18:30, sawyerfauver
The computers in the sales department did not have enough data storage capacity to contain all the information the department needed to store, and it was taking a long time for team members to access the data they needed. to fix the problem, the technician installed new, larger hard drives on all the computers.
Answers: 1
You know the right answer?
Consider the following class declarations.

public class Point
{
private do...

Questions in other subjects: