Java2days Tumba Solutions Crossword

12345678910111213
Across
  1. 4. A collection of code found within a class. If the data members of a class are nouns, the .... are the verbs
  2. 6. A .... describes a particular kind of object. It can contain related methods and data members (variables).
  3. 8. Keyword at the top of a .java file that tells the compiler which package and classes the file uses.
  4. 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.
  5. 10. To allocate storage for an object in memory (involves the keyword new).
  6. 11. To set the data of a variable (involves the equal sign).
  7. 12. Similar to a (formal) parameter, but specified at runtime, that is, in the call to a method or constructor.
Down
  1. 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. 2. A special type of instance method that creates a new object.
  3. 3. A variable defined with a primitive data type: byte, short, int, long, float, double, char, or boolean.
  4. 5. The principal code building block of Java programs.
  5. 7. An assignment that sets the starting value of a variable.
  6. 13. The use of a variable in the right hand side of an assignment statement.