Components in Computer Languages

The entire array is stored contiguously in memory (that is, there are no gaps between elements).

Arrays can have more than one dimension. A one-dimensional array is called a vector ; a two-dimensional array is called a matrix. http://www.webopedia.com/TERM/A/array.html

Array Simpsons = ["Homer","Marge","Bart","Lisa","Maggie"]
There are many different kinds and implementations of arrays, but their use in data organization is immeasurable. http://answers.yahoo.com/question/index?qid=20090206085004AAHTOqT

    REALBasic statements end in a new line

    Java statements end with a semi-colon

    • If-then(-else)
    • The if-then construct (sometimes called if-then-else) is common across many programming languages. Although the syntax varies quite a bit from language to language, the basic structure (in pseudo code form) looks like this: (The example is actually perfectly valid Visual Basic or Quick BASIC syntax.)
      • If (predicate) -the predicate is a expression that will evaluate to a boolean (true or false)
        Then
        (consequent)
        Else
        (alternative)
        End If

A class usually represents a noun, such as a person, place or (possibly quite abstract) thing, or something nominalized. For example, "Banana" is an instance of the class "Fruit" (a "Fruit" object). It is of the type "Fruit".

http://en.wikipedia.org/wiki/Class_%28computer_programming%29