Introduction to QBASIC

  Blog Desk       September 4, 2019     1214 No Comments

QBASIC

QBASIC (Quick Beginners All Purpose Symbolic Instruction Code) is a high level programming language developed by Microsoft Corporation USA in 1985.

Raw file extension: .bas
Final (compiled) file type: .exe

Example 1


CLS
PRINT “Hello World”
END

Example 2


CLS
a=5
b=10
c=a+b
PRINT c
PRINT a+b
END

 

Download software 

Leave a Reply

Your email address will not be published. Required fields are marked *