answersLogoWhite

0

QBasic

QBasic is an integrated development environment (IDE) and interpreter for a variant of the BASIC programming language. QBasic includes a debugger with code modification and on-the-fly expression evaluation that can run under most versions of DOS, Windows, Linux and FreeBSD.

500 Questions

When did The Print Collector's Quarterly end?

User Avatar

Asked by Wiki User

The Print Collector's Quarterly ended publication in 1933. It was a popular periodical devoted to the study and collection of prints.

Where to get qbasic text book?

User Avatar

Asked by Wiki User

You can search for QBasic textbooks on online marketplaces like Amazon or eBay. Additionally, you can check with local libraries, bookstores, or educational institutions that may carry textbooks on programming languages. Also, there are many resources available online for free that can help you learn QBasic.

How do you do Qbasic programs?

User Avatar

Asked by Wiki User

type:

PRINT "I like chocalate!"

What is qbasic programming?

User Avatar

Asked by Wiki User

QBasic is a programming language that was developed by Microsoft in the early 1990s. It is an interpreted language, which means that the code written in QBasic is not compiled into machine language before it is executed. Instead, it is interpreted by a program called a "compiler," which reads the code and executes it on the fly. QBasic is a simple, beginner-friendly language that is well-suited for learning the basics of programming. It is based on the older programming language BASIC (Beginners All-purpose Symbolic Instruction Code). It is not actively developed anymore, but still can be used for educational purposes.

What is Qbasic editor?

User Avatar

Asked by Wiki User

What is command in qbasic?

User Avatar

Asked by Wiki User

How i will write a program in qbasic -to display your name multiple times using do whileloop?

User Avatar

Asked by Wiki User

QBASIC code/Editor Screen

(Press key [F5] to make the program RUN/execute...)

====

(Pressing any key returns you straight back to the Editor screen; where you can either chose to further Edit/Re-Run/or else, Save your program.)

Here is another example.

CLS

COLOR 15, 4, 14

PRINT "Press any key to continue"

DO WHILE INKEY$ = ""

LOOP

FOR c = 1 TO 20

COLOR c, 0

PRINT "Replace this with the name you want to display"

NEXT c

COLOR 15, 0

END

What are the QBASIC keywords?

User Avatar

Asked by Wiki User