Lesson A3 ASCII
A standard set of two byte codes which represent characters. It stands for American Standard Code for Information Interchange.
ASSIGNMENT OPERATOR
The equal sign (=). It copies the value on the right to the variable on the left.
boolean
A primitive data type that represents either true or false.
char
A primitive data type that represents an ASCII character.
DECREMENT OPERATOR
The operator (--) that decreases the value of a numerical variable by one.
double
A primitive data type that represents numbers with a decimal point. It can represent larger numbers and has more precision than float, but it takes up more memory.
ESCAPE SEQUENCE
Special characters that are interpreted differently than they appear in code. These are generally used for carriage returns (\n), tabs (\t), and quotes (\") within string literals.
float
A primitive data type that represents numbers with a decimal point. It cannot hold numbers as large or as precise as a double, but it takes up less memory.
INCREMENT OPERATOR
The operator (++) that increases the value of a numerical variable by one.
int
A primitive data type that represents whole numbers.
MODULUS OPERATOR
The operator (%) that returns the remainder of dividing the left expression by the right expression.
PRECEDENCE
A set of rules that defines in what order operators are evaluated.
PRIMITIVE DATA TYPE
Basic items that are not objects.
RESERVED WORDS
Words in Java that have special meaning and therefore cannot be used as identifiers.
STRING LITERAL
Text enclosed by double quotes.
TYPE CONVERSION
A way of changing from one primitive data type to another.
|