Which of the following creates a blue circle centered at X = 50, Y = 50 with a radius of 50?

a. Circle blueCircle = new Circle(50, 50, 50);
blueCircle.setFill(Color.BLUE);
b. Circle blueCircle = new Circle(50, 50);
blueCircle.setStroke(Color.BLUE);
c. Circle blueCircle = new Circle(50, 50, 50, Color.BLUE);
d. Circle blueCircle = new blueCircle(50);
blueCircle.setColor(BLUE);

b. Circle blueCircle = new Circle(50, 50);
blueCircle.setStroke(Color.BLUE);

Computer Science & Information Technology

You might also like to view...

Match the following terms to their meanings:

I. Smallest area in which data can be written using NTFS or FAT A. driver II. Method used to store files on a disk drive B. System Information III. Displays details about computer's hardware and operating system C. firmware IV. Software that enables programs to communicate with hardware D. cluster V. Prevents storing data in any bad areas of a drive E. file system

Computer Science & Information Technology

Answer the following questions true (T) or false (F)

1. Reusing function subprograms is a bad idea. 2. The symbol = is the C equality operator. 3. A compound statement is a sequence of statements enclosed in {} braces.

Computer Science & Information Technology