At the command prompt, type in "help" and press Enter.
Menu-driven simply means you execute the application's commands by selecting them from a menu, as opposed to command-driven whereby you enter (type) the commands manually.
There are no commands in C.TurboC has got a function called getche, read the help (type into the editor: getche +)
Command Line Interface
A menu bar is a graphical user interface (GUI) component which contains all the commands that may be executed according to the current context of an application. The menu bar typically appears at the top of the application window and will display the primary commands such as File, Edit, Tools and Help. Clicking one of these will reveal related commands within a drop-down sub-menu. For instance, clicking File will reveal the commands that may be executed upon files, such as New, Open, Save, Print and Close. Some commands may reveal more specific commands within another sub-menu. Commands that are outwith the current context of the application are typically disabled. For instance, if there are no files currently open, then the Save, Print and Close commands will be disabled. As the context of the application shifts, the menu bar will adjust accordingly, enabling and disabling commands as befits the current context. In some cases, commands may be hidden completely rather than simply disabled, only becoming visible when they are within context. For instance, when you open a specific type of document, commands that are specific to that type of document will be made visible. And if you switch between multiple document types, the menu bar will adjust accordingly. In modern GUIs, the menu bar is often hidden in favour of more graphical components such as tool bars and ribbon bars.
To create a house in MSWLogo, start by using the REPEAT command to draw the square base of the house. Use commands like FORWARD and RIGHT to navigate and shape the walls. Next, use the TRIANGLE command or a combination of lines to create the roof. Customize your house by adding windows and a door with smaller shapes using similar commands.
In MSWLogo, the REPEAT command allows you to execute a set of instructions multiple times. The syntax is REPEAT <number> [commands], where <number> specifies how many times to repeat the enclosed commands. For example, REPEAT 4 [FORWARD 100 RIGHT 90] would move the turtle forward 100 units and then turn right 90 degrees, repeating this sequence four times to create a square. This command is useful for creating patterns and shapes efficiently.
To draw a triangle in MSWLogo, use the following commands in the command window. First, set the pen down with PD, then use the FORWARD command to move the turtle and RIGHT to create the angles. For example, you can type: PD FORWARD 100 RIGHT 120 FORWARD 100 RIGHT 120 FORWARD 100 This will create an equilateral triangle. Adjust the angles and lengths as needed for different triangle types.
First, do these commands : FD 100 RT 120 FD 100 RT 120 FD 100 Next, the the turtle is still present, so type HT in the box. And then you're done by getting a right sided equilateral triangle.
no we can't
To create a curved line in MSWLogo, you can use the REPEAT command combined with the FORWARD and RIGHT (or LEFT) commands. For example, you can draw a quarter-circle by repeating a small forward movement and a slight turn: REPEAT 36 [FORWARD 5 RIGHT 10]. Adjust the values to change the curvature and size of the arc as needed.
yes
To draw a boat in MSWLogo, you can use simple commands to create the shape. Begin by using the REPEAT command to create the hull, using FORWARD and RIGHT or LEFT to form the angles. Add details like sails or waves with additional shapes and lines. For example, you could use PENUP and PENDOWN to move the turtle without drawing while positioning the sails.
It is called "Edall" and you do Edall on it.
TELL ME THE ANSWER
To draw a square using MSWLogo, you can use the REPEAT command to create the four equal sides. Enter the following commands in the command window: REPEAT 4 [FORWARD 100 RIGHT 90] This code instructs the turtle to move forward 100 units and then turn right by 90 degrees, repeating this process four times to complete the square. Adjust the number in FORWARD to change the size of the square.
External Commands