
Concept explainers
Explanation of Solution
Loop that is used to draw identical circles:
//Loop from 0 through number of circles
for (int i = 1; i <= 6; i++)
{
//Set the color to fill
gc.setFill(Color.BLUE);
//Draw oval
gc.fillOval(x, y, DIAMETER, DIAMETER);
//Set the color to fill
gc.setFill(Color.BLACK);
//Draw the stroke
gc.strokeOval(x, y, DIAMETER, DIAMETER);
//Update the value of x
x += DIAMETER + GAP;
}
Explanation:
The above loop is used to create six identical circles. For each iteration,
- The color “BLUE” is set using “setFill ()” method.
- An oval is drawn using “fillOval ()” method.
- The color “BLACK” is set using “setFill ()” method.
- A stroke is drawn using “strokeOval ()” method.
- The value of “x” is updated.
Complete program:
The below program is used to create six identical circles using “JavaFX”.
//Import required packages
import javafx.application.Application;
import javafx.scene.canvas.Canvas;
import javafx.scene.Scene;
import javafx.scene.Group;
import javafx.stage.Stage;
import javafx.scene.canvas.GraphicsContext;
import javafx.scene.paint.Color;
//Define the main class that extends application class
public class SelfTest26 extends Application
{
//Declare required constant variables
//Set the gap
public static final int GAP = 50;
//Set the value of diameter
public static final int DIAMETER = 50;
//Set the value of X_CENTER
public static final int X_CENTER = 100;
//Set the value of U_CENTER
public static final int Y_CENTER = 100;
//Define the main method
public static void main(String[] args)
{
//Launch the application
launch(args);
}
//Override the start method
@Override
public void start(Stage primaryStage) throws Exception
{
//Create a group
Group g = new Group();
//Create a scene
Scene scene = new Scene(g);
//Create a canvas
Canvas c = new Canvas(800, 600);
//Create an object for graphics context
GraphicsContext gc = c...

Want to see the full answer?
Check out a sample textbook solution
Chapter 4 Solutions
Java: An Introduction to Problem Solving and Programming (8th Edition)
- Answer this JAVA OOP question below: An Employee has a name, employee ID, and department. An Employee object must be created with all its attributes. The UML diagram is provided below: - name: String - employeeId: String - department: String + Employee(name: String, employeeId: String, department: String) + setName(name: String): void + setEmployeeId(employeeId: String): void + setDepartment(department: String): void + getName(): String + getEmployeeId(): String + getDepartment(): String + toString(): String A faculty is an Employee with an additional field String field: rank public class TestImplementation{ public static void main(String[] args){ Employee[] allEmployee = new Employee[100]; // create an employee object with name Tom Evan, employee ID 001 and department IST and store it in allEmployee // create a faculty object with name Adam Scott, employee ID 002, department IST and rank Professor and store it in allEmployee } }arrow_forwardPlease answer this JAVA OOP question that is given below: An Employee has a name, employee ID, and department. An Employee object must be created with all its attributes. The UML diagram is provided below: - name: String - employeeId: String - department: String + Employee(name: String, employeeId: String, department: String) + setName(name: String): void + setEmployeeId(employeeId: String): void + setDepartment(department: String): void + getName(): String + getEmployeeId(): String + getDepartment(): String + toString(): String A faculty is an Employee with an additional field String field: rank Assuming the Employee class is fully implemented, define a Professor class in Java with the following: A toString() method that includes both the inherited attributes and the specializationarrow_forwardPlease answer JAVA OOP question below: An Employee has a name, employee ID, and department. An Employee object must be created with all its attributes. The UML diagram is provided below: - name: String - employeeId: String - department: String + Employee(name: String, employeeId: String, department: String) + setName(name: String): void + setEmployeeId(employeeId: String): void + setDepartment(department: String): void + getName(): String + getEmployeeId(): String + getDepartment(): String + toString(): String A faculty is an Employee with an additional field String field: rank Assuming the Employee class is fully implemented, define a Professor class in Java with the following: Instance variable(s) A Constructorarrow_forward
- Develop a C++ program that execute the operation as stated by TM for addition of two binary numbers (see attached image). Your code should receive two binary numbers and output the resulting sum (also in binary). Make sure your code mimics the TM operations (dealing with the binary numbers as a string of characters 1 and 0, and following the logic to increase the first number and decreasing the second one. Try your TM for the following examples: 1101 and 101, resulting 10010; and 1101 and 11, resulting 10000.arrow_forwardI need to define and discuss the uses of one monitoring or troubleshooting tool in Windows Server 2019. thank youarrow_forwardI would likr toget help with the following concepts: - Windows Server features - Windows Server versus Windows 10 used as a client-server networkarrow_forward
- EBK JAVA PROGRAMMINGComputer ScienceISBN:9781305480537Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENTEBK JAVA PROGRAMMINGComputer ScienceISBN:9781337671385Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENTProgramming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:Cengage
- C++ Programming: From Problem Analysis to Program...Computer ScienceISBN:9781337102087Author:D. S. MalikPublisher:Cengage LearningMicrosoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,C++ for Engineers and ScientistsComputer ScienceISBN:9781133187844Author:Bronson, Gary J.Publisher:Course Technology Ptr




