Across
- 3. Similar to a declaration except that it also reserves storage or provides implementations
- 4. A special type of instance method that creates a new object. In Java this term has the same name as their class and have no return value in their declaration
- 8. A variable defined with a primitive data type
- 9. The principal code building of Java programs
- 12. 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. Classes are always defined when they are declared, i.e., a class cannot be declared and then have its body defined elsewhere
- 13. A collection of code found within a class. If the data members of a class are nouns, the methods are the verbs
Down
- 1. To set the data of a variable
- 2. - To allocate storage for an object in memory
- 4. Describes a particular kind of object. It can contain related methods and data members. It must have the same name as the file it is contained in
- 5. The use of a variable in the right hand side of an assignment statement
- 6. To demote a variable from A larger capacity data type to a smaller one
- 7. - An assignment that sets the starting value of a variable
- 10. A variable or object passed into a method
- 11. Collection Programs require memory to run. Memory for objects is allocated by the keyword new. WHen objects are no longer used or your program terminates, Java automatically frees the used memory for other uses
