“Instance variable” is an alternative term for ___.
The term “class variable” is an alternative term for ___.
Temporary state is stored in a local variable, which is defined within a ___.
A variable that is declared within the opening and closing parenthesis of a method signature is referred to as a ____.
What are the eight primitive data types that the Java programming language supports?
To represent character strings, the class ___ is used.
A ___ is a container object that contains a predetermined number of values of a single type.
Exercises
Develop a compact program that specifies specific fields. Attempt to generate field names that are illegal and observe the type of error that the compiler generates. Follow the naming conventions and rules as a reference.
In the program you developed in Exercise 1, attempt to print the values of the fields without initializing them. Experiment with a local variable to determine the types of compiler errors that can be generated. Acquiring an understanding of typical compiler errors will facilitate the identification of bugs in your code.