- Shuffle
Toggle OnToggle Off
- Alphabetize
Toggle OnToggle Off
- Front First
Toggle OnToggle Off
- Both Sides
Toggle OnToggle Off
Front
How to study your flashcards.
Right/Left arrow keys: Navigate between flashcards.right arrow keyleft arrow key
Up/Down arrow keys: Flip the card between the front and back.down keyup key
H key: Show hint (3rd side).h key
![]()
PLAY BUTTON
![]()
PLAY BUTTON
![]()
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.
|