answersLogoWhite

0

fd 50

rt 90

fd 50

rt 90

fd 50

rt 90

fd 50

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Write logo commands to draw the rectangle figure?

write the logo commands to draw the triangle


How do you figure a magic square?

draw it


In qbasic How many line commands are required to draw a square?

In QBASIC, you can draw a square using just a few line commands. You typically need a command to set the graphics mode, followed by a loop or multiple line commands to draw each side of the square. For example, using the LINE command, you can draw a square with four separate LINE statements or a loop that iterates four times. In total, you would need at least 5 commands if you include setting the graphics mode and drawing the lines.


What are the commands to draw a castle in MSW logo?

To draw a castle in MSW Logo, you can use a combination of basic shapes and commands. For example, you might use the following commands: REPEAT 4 [FORWARD 100 RIGHT 90] ; Draw the base square FORWARD 100 ; Move to the top of the square REPEAT 4 [FORWARD 50 RIGHT 90] ; Draw the top square (tower) You can further customize the castle by adding more towers and details with additional commands. Adjust the dimensions and repetitions to create your desired castle design.


How would you draw a diagram to represent the contrapositive of the statement If it is a rectangle then it is a square?

figure b


A triangle has 3 sides draw a figure that has twice as many sides as a triangle?

square


Why can't you draw trapezoid with 3 right angles?

if a figure is a square, then it is a regular quadrilateral


How do you draw a parallelagram?

A parallelogram is a figure with parallel sides. For instance, a square is a parallelogram because its sides are parallel.


How do you draw a second figure with a square base having 8 edges 5 verties and faces?

Draw a square triangular prism (whatever the heck that's called) or maybe just draw a triangle 3D form. Sorry, I'm bad at explaining.


What shape has 8 straight lines?

An octagon has 8 sides. You can also say "8-sided polygon".An octagon is a simple figure : it divides the plane on which it is drawn into just two regions. These regions are normally referred to as 'inside' and 'outside'.It is possible to draw a figure using 8 straight lines which divides the plane into more than two regions.Draw a pentagon. On one side of this construct a square. This figure has two insides and an outside.Draw a square. Place a point outside the square and above it. Join this point to the two nearest corners of the square. Place another point below the square. Join this point to the two nearest corners of the square. This figure has three insides and an outside.Draw a square. Draw its diagonals. From a point outside the square draw lines to the two nearest corners. This figure has five insides and an outside.There are many more possibilities, which are easy to draw but increasingly difficult to describe in words. Almost all the non-simple figures do not have a name.


Write an algorithm and draw flowchart to calculate the perimeter of a square?

Sure, honey. First, let's keep it simple. To calculate the perimeter of a square, you just need to multiply the length of one side by 4. So, if the side length is "s", the formula is 4s. As for the flowchart, draw a square with "s" labeled on one side, then an arrow pointing to a box that says "Perimeter = 4s". Done and done, darling.


How do you draw a triangle using logo commands using three lines?

fd 60 rt 120 fd 60 rt 120 fd 60 rt 120 will cause the turtle to draw a triangle. The square brackets indicate that the enclosed commands are to be executed three times, repeat 3 [fd 60 rt 120] Search Google with: "logo commands triangle" and have a look through the websites on the subject.