-
A stack stores data using first-in, last-out ordering.
A) TrueB) False
-
Stacks are controlled through two operations traditionally called ___ and _____
A) Push and Pull B) Push and PopC) Pop and Pull D) Pop and Peep
-
-
Through _________ , you can control what parts of a program can access the members of a class
A) EncapsulationB) ClassC) InheritenceD) Polymorphism
-
-
-
-
-
-
-
The type of data returned by a method need not be compatible with the return type specified by the method
A) TrueB) FalseExplanation: The type of data returned by a method must be compatible with the return type specified by the method. For example, if the return type of some method is boolean, you could not return an integer
-
Java allows objects to initialize themselves when they are created using _________
A) ArgumentsB) ClassesC) ConstructorsD) Parameters
-
-
-
System Class
What is the use of system class?
-
-
The new operator dynamically allocates ________ for an object and returns a reference to it.
A) ClassesB) VariablesC) Memory D) None of the Above
-
Method overloading is one of the ways that Java supports ____________
A) EncapsulationB) ClassC) InheritenceD) Polymorphism
-
Can a abstract class have a constructor ?When would the constructor in the abstract class be called ?
All the classes including the abstract classes can have constructors.Abstract class constructors will be called when its concrete subclass will be instantiated.
-
Regarding to strings
class String{
public static void main(String args[]){
}
}
Java Classes Questions
Ans