Java2days Tumba Solutions Crossword
Across
- 4. A collection of code found within a class. If the data members of a class are nouns, the .... are the verbs
- 6. A .... describes a particular kind of object. It can contain related methods and data members (variables).
- 8. Keyword at the top of a .java file that tells the compiler which package and classes the file uses.
- 9. (1) to demote a variable from a larger capacity data type to a smaller one. (2) to re-establish the class of an object.
- 10. To allocate storage for an object in memory (involves the keyword new).
- 11. To set the data of a variable (involves the equal sign).
- 12. Similar to a (formal) parameter, but specified at runtime, that is, in the call to a method or constructor.
Down
- 1. A statement that creates a variable, method, or class identifier and its associated attributes but doesn't necessarily allocate storage for variables or define an implementation for methods.
- 2. A special type of instance method that creates a new object.
- 3. A variable defined with a primitive data type: byte, short, int, long, float, double, char, or boolean.
- 5. The principal code building block of Java programs.
- 7. An assignment that sets the starting value of a variable.
- 13. The use of a variable in the right hand side of an assignment statement.