Examlex

Solved

Import Javax.swing.*; Import Java.awt.*;

question 51

Essay

import javax.swing.*;
import java.awt.*;
import java.awt.Color;
public class JDemo3DRectangles extends JFrame
{
public void paint(Graphics gr)
{
super.paint(gr);
final int WIDTH = 60, HEIGHT = 80;
gr.setColor(Color.PINK);
gr.fill3DRect(20, 40, WIDTH, HEIGHT, true);
gr.fill3DRect(100, 40, WIDTH, HEIGHT, false);
}
public static void main(String[] args)
{
JDemo3DRectangles frame = new JDemo3DRectangles();
frame.setSize(180, 150);
frame.setVisible(true);
}
}
The highlighted code above creates two filled 3D rectangles. Describe how the color of the rectangles is set, and explain the five arguments that are used to draw the rectangles.


Definitions:

Independent Variable

The variable in an experiment that is manipulated by the researcher to observe its effect on the dependent variable.

Comprehension

The ability to understand or grasp the meaning of something.

Test Scores

Quantitative measures obtained from educational assessments or exams; also not a key term in a statistical context alone, thus NO.

Reliable

A term indicating the consistency or repeatability of a measure or test over time.

Related Questions