Which of the following method can be used to draw the outline of square?

Which of the following method can be used to draw the outline of square?

Q. Which of the following methods can be used to draw the outline of a square within a JAVA.awt.Component object?
B. fillRect()
C. drawPolygon()
D. drawPolygon()
Answer» a. drawLine()

Which of the method is used to draw a square?

Explanation: For example if we want to draw a square of 4×4, first draw a horizontal line of 4; At one end draw a line at 90° to first line by set square. Then similarly draw another line at other end that too at 90° to first line.

How do you draw a simple square?

Place the spike of the compass on point Q and draw an arc somewhere below the arm MN. Place the spike of the compass on point P and draw another arc which cuts the arc drawn in the previous step at some point (say R). Connect the points P and R and the points Q and R using a straightedge. The figure PMQR is a square.

How do you draw a drawing Square?

Draw a line that bisects the first line perpendicularly. Extend the second line 2.75 cm (half of 5.5 cm) in each direction from the first line. Draw four lines connecting in turn the four ends of the line segments. That’s the square.

How do you draw an exact square?

How is a square constructed?

Constructing a square It starts with a given line segment AB. It then erects a perpendicular at one end of the line, which will become the second side of the square. The compass is then set to the length of the given side, and the other three sides are marked off.

Which is the correct way to draw a square?

You can use the same methods that you used to draw a rectangle to draw a square viz., strokeRect (), fillRect () and rect (). Similar to a rectangle, a square is defined by its starting point (x,y), length and breath.

Which is the correct way to draw a rectangle?

The left and right edges of the rectangle are at x and x + width respectively. The top and bottom edges of the rectangle are at y and y + height respectively. This method is also used to draw a square.

How do you draw a rectangle in Excel?

To draw a rectangle, use the drawRect()method of a Graphics object. This method looks like: drawRect(int x, int y, int width, int height) It draws the outline of a rectangle using the current pen color. The left and right edges of the rectangle are at x and x + width respectively.