Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

QBasic Vs. QuickBASIC

I want to learn "old school" programming. A friend suggested Q BASIC. But another person told me Quick Basic. I want to practice programming in the OLD Dos operating system.

What is the difference between the two Q Basic and Quick Basic?

like image 649
Elmer Fudd Avatar asked May 28 '26 11:05

Elmer Fudd


1 Answers

Differences between QBasic and QuickBasic: QBasic is the slimmed-down version of QuickBasic. Compared to QuickBasic, QBasic is limited as it lacks a compiler. Therefore QBasic cannot be used to produce executables (.exe files). The source code (usually files with .bas extension) can only be executed immediately by the built-in QBasic interpreter.

Furthermore, QuickBasic has a more extensive command set than QBasic.

like image 155
Alex Xander Avatar answered Jun 03 '26 21:06

Alex Xander