Definition

BASIC (Beginner's All-purpose Symbolic Instruction Code)

Part of the Programming glossary:

BASIC was an early programming language that is still among the simplest and most popular of programming languages. BASIC stands for "Beginner's All-purpose Symbolic Instruction Code." Originally designed as an interactive mainframe timesharing language by John Kemeney and Thomas Kurtz in 1963, it became widely used on personal computers everywhere.  On IBM's first "family" computer, the PCJr, a BASIC cartridge was a popular add-on. Because of its simplicity, BASIC has frequently been used in teaching the introductory concepts of programming with a working language.

Next Steps

BASIC continues to be widely used because it can be learned quickly, its statements are easy to read by other programmers, and support is available on most operating systems. BASIC's documentation has been translated into many national languages. It often comes with sound and graphics support. A popular version of BASIC today is QBASIC.

BASIC is used in many business applications and is still considered a valid choice as a programming language for some purposes. Microsoft's Visual Basic adds object-oriented features and a graphical user interface to the standard BASIC.

The following example of BASIC gets a number from a user, multiplies the number by 10, and prints or displays the result:

10 PRINT
                                                                              'Enter a number'
                                                                              20 INPUT NUM 
                                                                              30 PRINT 'Your number * 10 is ';NUM*10;
                                                                            
                                      

 

Read more about it at:
> SearchVB.com is a portal for Visual Basic developers.

This was last updated in March 2011
Posted by: Margaret Rouse

Related Terms

Definitions

  • glocalization

    - Glocalization is the concept that in a global market, a product or service is more likely to succeed when it is customized for the locality or culture in which it is sold.  (SearchCIO.com)

  • Apache Lucene

    - Apache Lucene is a freely available information retrieval software library that works with fields of text within document files. This evolving venture is also called the Apache Lucene Project. (WhatIs.com)

  • polynomial interpolation

    - Polynomial interpolation is a method of estimating values between known data points. When graphical data contains a gap, but data is available on either side of the gap or at a few specific points ... (WhatIs.com)

Glossaries

  • Programming

    - Terms related to software programming, including definitions about programming languages and words and phrases about software design, coding, testing and debugging.

  • Internet applications

    - This WhatIs.com glossary contains terms related to Internet applications, including definitions about Software as a Service (SaaS) delivery models and words and phrases about web sites, e-commerce ...

Dig Deeper

People Who Read This Also Read...

Ask a Question. Find an Answer.Powered by ITKnowledgeExchange.com

Ask An IT Question

Get answers from your peers on your most technical challenges

Ask Question

Tech TalkComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.