answersLogoWhite

0

What is GW-BASIC?

Updated: 8/10/2023
User Avatar

Wiki User

6y ago

Best Answer

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"

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

6y ago

A version of BASIC developed by Microsoft.

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

A version of BASIC written by Microsoft. The GW stands for Gates William (Bill Gates).

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is GW-BASIC?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Write down programin GWBASIC to sort numbers in an array?

10 cls 20 end 30 next 40 print


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.


How do you draw pascals triangle in gwbasic?

I suggest using an array with as many elements as the longest row you need. To keep it simple, keep two copies of the array, and calculate each element of the "new" array as the sum of the corresponding element, plus the previous element, of the "old" array. Then copy the information back for the next step.


Difference between dos and c programming?

Answer: In dos you have to create the complete application, yourself in other words the complete .EXE file, that can be done in any of the many different programming languishes IE. GWBasic, QBasic, C, or ASM etc., the last is the most difficult but the result is the fastest application. Where Windows is a platform for your application, most of the things you want to do is already created in Windows, all you have to do, is to use it from within your application, not that it means less programming, you actually have to do more coding than with Dos, for instance in Dos GWBasic, if you want to read data from a comm. port you just open it as follow [code] open "comm1:" for input as #1 input #1, var close #1 [/code] But in Windows it is a long story

Related questions

What are the difference between gwbasic and qbasic?

Difference between QBASIC and GWBASIC?


You want to save Excel numeric data into gwbasic format?

Not sure what you are trying to do. GWBasic is a programming language; Excel is a spreadsheet. If you like, just copy data from Excel to your GWBasic editing program and reformat, as needed.


What is full form of gwbasic?

George Washington Basic


How do you operate GWBasic computer programming language?

Check out the resources below.


What is the difference gwbasic commands and statements?

difference between command and statement


What does GWBASIC stand for?

GW-BASIC stand for Gee- Wiza Buisness All Symbolic Instruction Code.


How draw a rectangle in gwbasic?

10 cls 20 screen 2 30 line (70,80)- (190,170),,b 40 end


Write down programin GWBASIC to sort numbers in an array?

10 cls 20 end 30 next 40 print


How do you save a GWBASIC file to a text file?

Save the file with file name in double quotes comma A for ASCII. Example: SAVE "myfile.bas",A


Will you please tell the GWBASIC program for the multiplication of two arrays?

just type "chikosalovakia" on gw basic .......................it will give you all instructions............it is a special code.................


WHO invented GWbasic?

GW Basic was invented by Dr James G Kemeny And Thomas E kurtz :) in Dart mouth College New Hamshair USA


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)