Bookmark the Dictionary of Words Online

basic definition from the Dictionary of Words

Home Contact us New words
Web Images MP3/Audio Video Directory News
Help
Terms of Service
RESULTS IN:    English Spanish

Found 8 hits - Term: basic, Database: *, Strategy: exact
[1] : The Collaborative International Dictionary of English v.0.48
basic \ba"sic\, a.
   1. chem.
      a relating to a base; performing the office of a base in
          a salt.
      b having the base in excess, or the amount of the base
          atomically greater than that of the acid, or exceeding
          in proportion that of the related neutral salt.
      c apparently alkaline, as certain normal salts which
          exhibit alkaline reactions with test paper.
          1913 webster

   2. min. said of crystalline rocks which contain a
      relatively low percentage of silica, as basalt.
      1913 webster

   basic salt chem., a salt formed from a base or hydroxide
      by the partial replacement of its hydrogen by a negative
      or acid element or radical.
      1913 webster
see also:
basic salt 
[2] : The Collaborative International Dictionary of English v.0.48
basic \basic\ n.
   1. computers beginner's all-purpose symbolic iruction c.
      an artificial computer language with a relatively
      simplified instruction set.

   note: writing a program in basic or other higher computer
         languages is simpler than writing in assembly language.
         see also programming language, fortran.
         pjc
see also:
programming language fortran 
[3] : The Collaborative International Dictionary of English v.0.48
higher programming language \higher programming language\ n.
   computers
   a computer programming language with an instruction set
   allowing one instruction to code for several assembly
   language instructions.

   note: the aggregation of several assembly-language
         instructions into one instruction allows much greater
         efficiency in writing computer programs. most programs
         are now written in some higher programming language,
         such as basic, fortran, cobol, c, c++,
         prolog, or java.
         pjc
see also:
basic fortran cobol c c++ prolog 
java 
[4] : WordNet (r) 2.0
basic
     adj 1: pertaining to or constituting a base or basis; "a basic
            fact"; "the basic ingredients"; "basic changes in
            public opinion occur because of changes in priorities"
            ant: incidental
     2: reduced to the simplest and most significant form possible
        without loss of generality; "a basic story line"; "a
        canonical syllable pattern" syn: canonic, canonical
     3: of primary importance; "basic truths" syn: basal, primary
     4: serving as a base or starting point; "a basic course in
        russian"; "basic training for raw recruits"; "a set of
        basic tools"; "an introductory art course" syn: introductory
     5: of or denoting or of the nature of or containing a base
     n 1: a popular programming language that is relatively easy to
          learn; an acronym for beginner's all-purpose symbolic
          instruction code; no longer in general use
     2: usually plural a necessary commodity for which demand is
        constant syn: staple
see also:
incidental canonic canonical basal primary introductory 
staple 
[5] : Moby Thesaurus II by Grady Ward, 1.0
106 moby thesaurus words for "basic":
   ab ovo, aboriginal, acid, alkali, austere, bare, basal, basilar,
   bedrock, biochemical, bottom, capital, central, chaste, chemical,
   chemicobiological, chemicoengineering, chemicomineralogical,
   chemicophysical, chemurgic, chief, constituent, constitutive,
   copolymeric, copolymerous, crucial, dimeric, dimerous,
   electrochemical, element, elemental, elementary, embryonic,
   essential, focal, foundational, fundamental, generative, genetic,
   germinal, gut, heteromerous, homely, homespun, homogeneous,
   in embryo, in ovo, indispensable, indivisible, irreducible,
   isomerous, key, life-and-death, life-or-death, macrochemical, main,
   material, mere, metameric, monolithic, monomerous, nonacid,
   of a piece, of the essence, of vital importance, original,
   part and parcel, photochemical, physicochemical, phytochemical,
   plain, polymeric, pregnant, primal, primary, prime, primeval,
   primitive, primordial, principal, pristine, protogenic, pure,
   pure and simple, radical, radiochemical, root, rudiment,
   rudimentary, seminal, severe, simon-pure, simple, single, spare,
   stark, substantial, substantive, thermochemical, unadorned,
   uncluttered, underlying, undifferenced, undifferentiated, uniform,
   vital




[6] : Virtual Entity of Relevant Acronyms (Version 1.9, June 2002)
basic
     beginner's all-purpose symbolic instruction code
     
     

[7] : Jargon File (4.3.1, 29 Jun 2001)
basic /bay'-sic/ n. a programming language, originally designed for
   dartmouth's experimental timesharing system in the early 1960s, which
   for many years was the leading cause of brain damage in proto-hackers.
   edsger w. dijkstra observed in "selected writings on computing: a
   personal perspective" that "it is practically impossible to teach good
   programming style to students that have had prior exposure to basic: as
   potential programmers they are mentally mutilated beyond hope of
   regeneration." this is another case like pascal of the cascading
   lossage that happens when a language deliberately designed as an
   educational toy gets taken too seriously. a novice can write short basic
   programs on the order of 10-20 lines very easily; writing anything
   longer a is very painful, and b encourages bad habits that will make
   it harder to use more powerful languages well. this wouldn't be so bad
   if historical accidents hadn't made basic so common on low-end micros in
   the 1980s. as it is, it probably ruined tens of thousands of potential
   wizards.

   1995: some languages called `basic' aren't quite this nasty any more,
   having acquired pascal- and c-like procedures and control structures and
   shed their line numbers. --esr

   basic stands for "beginner's all-purpose symbolic instruction code".
   earlier versions of this entry claiming this was a later backronym
   were incorrect.


see also:
pascal lossage backronym 
[8] : The Free On-line Dictionary of Computing (27 SEP 03)
basic
     
         beginner's all-purpose symbolic instruction code.
        a simple language oroginally designed for ease of programming
        by students and beginners.
     
        basic exists in many dialects, and is popular on
        microcomputers with sound and graphics support.  most micro
        versions are interactive and interpreted.
     
        basic has become the leading cause of brain-damage in
        proto-hackers.  this is another case like pascal of the
        cascading lossage that happens when a language deliberately
        designed as an educational toy gets taken too seriously.  a
        novice can write short basic programs on the order of 10-20
        lines very easily; writing anything longer is a very
        painful, and b encourages bad habits that will make it
        harder to use more powerful languages well.  this wouldn't be
        so bad if historical accidents hadn't made basic so common on
        low-end micros.  as it is, it ruins thousands of potential
        wizards a year.
     
        originally, all references to code, both goto and gosub
        subroutine call referred to the destination by its line
        number.  this allowed for very simple editing in the days
        before text editors were considered essential.  just typing
        the line number deleted the line and to edit a line you just
        typed the new line with the same number.  programs were
        typically numbered in steps of ten to allow for insertions.
        later versions, such as basic v, allow goto-less
        structured programming with named procedures and
        functions, if-then-else-endif constructs and while loops
        etc.
     
        early basics had no graphic operations except with graphic
        characters.  in the 1970s basic interpreters became standard
        features in mainframes and minicomputers.  some versions
        included matrix operations as language primitives.
     
        a public domain interpreter for a mixture of dec's
        mu-basic and microsoft basic is here
        ftp://oak.oakland.edu/pub/unix-c/languages/basic/basic.tar-z.
        a yacc parser and interpreter were in the
        comp.sources.unix archives volume 2.
     
        see also ansi minimal basic, bournebasic, bwbasic,
        ubasic, visual basic.
     
        jargon file
     
        1995-03-15
     
     
see also:
microcomputers interactive interpreted pascal goto text editors 
basic v structured programming procedures functions while 
interpreters mainframes minicomputers matrix primitives 
public domain interpreter dec mu-basic microsoft basic 
lt;heregt; yacc parser ansi minimal basic bournebasic 
bwbasic ubasic visual basic jargon file 

Results 1 - 10 of 21 found about basic:

Basic >> B Words
Basic, definition of term: Basic
basic_pag1.html

Basic Inputoutp >> B Words
Basic Inputoutp, definition of term: Basic Inputoutp
basic+inputoutp_pag1.html

Visual Basic >> V Words
Visual Basic, definition of term: Visual Basic
visual+basic_pag1.html

XHTML Basic
...Basic. *B.2. XHTML. Basic Driver. *B.3. XHTML. Basic Customizations. 1 ... Basic in such a way that XHTML. Basic documents are in the set of ... ..
http://www.w3.org/TR/xhtml-basic/, score=100, date indexed=January 24, 2006, 7:50 am

Council for Basic Education Home Page
... ..
http://www.c-b-e.org/, score=99, date indexed=December 30, 2005, 1:43 pm

Basic Books Home
...Be Very Afraid - Read about the latest from Basic Books that address ... Basic Books Highlights * Letters to a Young... Series * 2005: Year of ... ..
http://www.basicbooks.com/, score=99, date indexed=December 29, 2005, 10:47 pm

RealPlayer
... ..
http://www.real.com/, score=98, date indexed=December 29, 2005, 10:19 pm

Basic Guide to Essay Writing
...An essay can have many purposes, but the basic structure is the same ... Either way, your essay will have the same basic format.. If you follow ... ..
http://members.tripod.com/~lklivingston/essay/, score=98, date indexed=December 21, 2005, 8:55 am

Basic Skills Agency - Things I`ve Seen
...We`ve changed Basic Skills. magazine. If you haven`t already seen the ... for Christmas and the New Year from everyone at the Basic Skills ... ..
http://www.basic-skills.co.uk/, score=98, date indexed=December 30, 2005, 12:20 am

Visual Basic Developer Center
...... Basic 2005 IDE * What's in Visual Basic 2005 for the Visual Basic 6.0 ... Visual Basic 6.0 to Visual Basic 2005 Upgrade Guidance Released. This ... ..
http://msdn.microsoft.com/vbasic/, score=98, date indexed=December 30, 2005, 5:56 am

Page 1 2 3 Next


Last accessed:2008/07/25 23:03:06 [Total processing time: 10 seconds]
Myspace Layouts for Girls My Space
Middle East Business España México Puerto Rico Costa Rica Argentina Directorio
Dictionary online database provided by dict.org