A special method called ________provide an entry point to an application.
Main
Void
Function
None of these
Which type of programming allow manipulation of objects of a variety of types through well defined interfaces?
Procedural programming
Modular programming
Object oriented programming
Unstructured programming
___________ is a blueprint or prototype that defines the variables and the methods common to all objects of a certain kind. Select the best word to complete this sentence.
Class
Inheritance
Polymorphism
Aggregation
In unstructured programming, the main program directly operates on_____________.
Local data
Constants
Variables
Global data
Which is the ability for a class or object to be defined as an extension or specialization of another class or object ?
Method
Overloading
Encapsulation
If an attribute is private, which methods have access to it?
private
Only those defined in the same class.
Only static methods in the same class
Only instance methods in the same class.
Only classes in the same package.
Object Oriented Programming is characterized by using
Polymorphism.
All of these
The actions in a Java class are called
procedures
functions
methods
subroutines
A collection of methods with no implementation is called an
Interface
Object
___________are the fundamental building block of a Java program.
Functions