cosc_351_fa19
Across
- 1. Keyword used a reference to the current Object
- 4. Conventional method used for retrieving the value of a variable
- 6. Keyword in object-oriented languages that set the accessibility of classes methods and other members
- 10. Keyword used inside a sub-class method definition to call a method defined in the parent class
- 12. A set of statements which is referred to by name and can be called (invoked) at any point in a program
- 14. Any character or series of characters that represent horizontal or vertical space
- 17. A variable that contains specific information used in an object
- 18. The type of comment that utilizes //
- 19. Keyword associated with inheritance
- 20. A special method that is used to initialize a newly created object and is called just after the memory is allocated for the object
- 22. A documentation generator created by Sun Microsystems for the Java language (now owned by Oracle Corporation) for generating API documentation in HTML format from Java source code
- 23. A unit testing framework for the Java programming language
- 25. Access modifier indicating that an attribute or method can be accessed only within the class in which it exists
Down
- 2. Conventional method used for updating the value of a variable
- 3. The type of comment that utilizes /* and */
- 5. A data type that's based on a class rather than on one of the primitive types that are built in to the Java language
- 7. A mechanism of wrapping the data (variables/attributes) and code acting on the data (methods) together as a single unit, where attributes and methods are hidden within a class
- 8. Characterizes the difference between two descriptions of an object by different representations
- 9. A mechanism wherein a new class is derived from an existing class
- 11. An instance of a class
- 13. Access modifier indicating that an attribute or method can be accessed directly anywhere within the application
- 15. A data type available within the Java language
- 16. Defines and constrains the data type of the value returned from a subroutine or method
- 21. A user-defined blueprint or prototype from which objects are created
- 24. Name of the function that acts as starting point for an application