answersLogoWhite

0

10 SCREEN 2

20 PSET (200,120)

30 DRAW "E100 F100 L200"

40 PSET (200,50)

50 DRAW "R200 G100 H100"

END

What else can I help you with?

Continue Learning about Engineering

What is GW-BASIC?

Several theories are in circulation regarding the full form of GWBASIC. According to Greg Whitten (an early Microsoft employee who developed the standards in the company's BASIC compiler line) GWBASIC stands for "Gee-Whiz Beginner's All-purpose Symbolic Instruction Code". One more full form is in circulation and is "Gates-Whitten Beginners All Purpose Symbolic Instruction Code" (because Bill Gates and Greg Whitten were the primary developers of the language). according to other sources,GWBASIC stands for.... ''Graphics Workstation Beginers All popose Symbolic Instruction Code"


Write down programin GWBASIC to sort numbers in an array?

10 cls 20 end 30 next 40 print


Examples of programming language?

There are hudreds of Programming languages out there.Examples: C++, GWbasic, C#, C++, HTML , Ruby etc.They're further categorized as "Low Level language" and "High Level Language".Low level languages are those languages which are closer to the binary language or in another words machine language. These are difficult for us to learn but it's easy for machine to execute quickly.Example of a low level language is assembly language.High level languages are those languages which are close to human language/natural language and are easy for us to learn.Examples of high level language are Python, Ruby, C++ , Java etc.


What is the purpose of the comma operator in GWBASIC?

The GWBASIC comma operator is used to format the output of the PRINT command, placing the value to be printed in the next print zone rather than immediately after the previous value. Note that GWBASIC divides each line into zones of 14 spaces each. The comma operator also has other purposes, such as when filling a string with the same character. For example: 10 X$ = STRING$(10,45) 20 PRINT X$"HELLO WORLD"X$ RUN ----------HELLO WORLD---------- The comma operator is also used to separate the dimensions of a multi-dimensional array, such as the following 2x3 array: A(2,3)


What are arrays in gwbasic?

These are memory locations to store a vast amount of data. Usually a limited no. of variables are handled while programming in GW Basic. Sometimes you need to bother a plenty of variables and this colud make programming tiresome. To save yourself from a lot of manual inputs, Arrays can help you.

Related Questions