Chapter 1: Getting Started Flashcards
Intermediate language
Same for all computers, a language that must be translated into a appliance’s specific language.
Java byte-code
Java intermediate language used by Java Virtual Machine (JVM)
Byte
8 bits
Object Oriented Programmin (OOP)
A program that consists of objects that interact with each other by means of actions.
Objects
Objects in a program
Methods
Actions the objects perform. Also called procedures, functions, and subprograms.
Class
A group of objects of the same type and having the same method.
Java application program
A class with a method named “main”; a regular java program ran on a computer
Applets
A program ran on a web browser
Applet viewer
A debugging aid sometimes used to view applets
Body of a method is enclosed in…
Braces { }
System.out
An object that sends output to screen
Println
A method causes quoted string to be output on screen; tells computer to show what is in the parenthesis.
System.out.println
Causes quoted string to be output on screen; tells computer to show what is in the parenthesis.
Invoking a method
AKA sending a message: Performing and action
Argument
Provides information needed by a method to carry out an action. IE, the test to display