My Crossword Maker Logo
Powered by BrightSprout
Save Status:
or to save your progress. The page will not refresh.
Controls:
SPACEBAR SWITCHES TYPING DIRECTION
Answer Key:
Edit a Copy:
Make Your Own:
Crucigrama Sopa de Letras Hoja de Trabajo
Calificar este Puzzle:
Log in or sign up to rate this puzzle.

Java Drill 1

Horizontales
The public methods of a class are also known as the class's ________.
A(n) ________ class is used to store a primitive-type value in an object type.
If a class declares constructors, the compiler will not create a(n) ________ constructor.
A(n) ________ variable represents classwide information that’s shared by all the objects of the class.
The combination of data together with its methods is called a(n) ________ data type.
Having multiple methods with the same name but different signatures in a class is called method ________.
One way to make code reusable is to ________ or combine data elements together with methods that operate on that data in a separate program module.
It's possible to have several methods with the same name that each operate on different types or numbers of arguments. This feature is called method ________.
Classes that are not part of a package may access only ________ members of classes in the package.
A Java ________ specifies the names, parameters, and return values.
If a method contains a local variable with the same name as one of its class’s fields, the local variable ________ the field in that method's scope.
(True / False) The has-a relationship between classes means that one class is a subclass of the other.
The call to ________ invokes the constructor for the current class whose parameter list matches the argument list.
Verticales
Keyword ________ requests memory from the system to store an object, then calls the corresponding class’s constructor to initialize the object.
A Java interface is a(n) ________ between the interface designer and the programmer who codes a class that implements the interface.
The superclass of all Java classes is ________.
A(n) ________ is a model of a physical entity or activity.
________ errors occur during program execution.
(True / False) Each class that implements an interface must provide the complete definition of all methods declared in the interface.
________ visibility is for members of a class that should not be accessible to anyone but the class, not even classes that extend it.
(True / False) An interface is a class.
(True / False) An array can store many different types of values.
The ______ call in a class constructor invokes the superclass's constructor that has the corresponding argument list.