• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/11

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

11 Cards in this Set

  • Front
  • Back
What is a package?
A package is a namespace for organizing classes and interfaces in a logical manner. Makes large software projects easier to manage.
What is a class?
A blueprint or prototype from which objects are created.
IDE - Integrated Development Environment
Software application that provides facilities to programmers. Consists of a. a source code editor, b. a compiler, c. build automation tools, d. a debugger. Ex Eclipse, NetBeans
What is a compiler?
A computer program that translates source code in a programming language into target language to create an executable program.
Primitive data types
Predefined by the language and is named by a reserved keyword. 8 Primitive data types: byte, short, int, long, float, double, boolean, char
Literals
Notation for representing a fixed value in source code.
Operators
Similar to operations in mathematics
Statements
Instructs to do something, EX. variable declaration, if statement, while loop
Expressions
Combination of operators to be evaluated. EX Boolean expression
Constants
Special kind of variable whose value cannot typically be altered by the program during its execution.
Method
A subroutine associated with a class or with an object.