Key Terms
A that allows Java programs to run on any computer by translating _________ into machine-readable instructions.
The language that Java code gets compiled into, which can be understood by any computer with a _________.
The process of creating a variable by putting a on an empty box, specifying the _________ type it will hold.
The process of actually putting a into a declared variable box for the _________ time.
The single sign (=) that means 'store the value on the _________ into the variable on the left.'
Programming like += and -= that combine an operation with _________ in one step.
What happens when you try to store a number that's too for an int, causing it to wrap around to the _________ end of the range.
Converting from a data type to a smaller one using _________ and potentially losing information.