[Tutor] programming definitions for a newbie.

R. Alan Monroe R. Alan Monroe" <amonroe@columbus.rr.com
Wed Jun 18 07:01:02 2003


> *object orientated programming
save this for later

> *arrays
Imagine a row of numbered boxes (for instance, 0 through 20). You can
stuff things in any box just by giving the number of the box.


> *classes
save this for later


> *function
A function is like telling your kids/spouse/pet to go check the mail.
They'll walk outside, get the mail from your mailbox, and RETURN that
mail to you. You can say "go check the mail" as often as you like, any
number of times.


> *local variable
A variable thats declared inside of something like a function or
class.

> *global variable
The opposite. It's not inside of anything in particular. Like files in
the root of your C: drive. They're not in any particular folder.


Alan