-
-
The data, or variables, defined within a class are called _______ variables
A) ObjectB) ClassC) Instance D) None of the above
-
-
-
A class is declared by use of the ________ keyword.
A) ObjectB) ClassC) Instance D) None of the above
-
Java does not supports recursion
A) TrueB) False
-
-
-
-
The Code in java is contained within Methods
A) TrueB) False
-
When we create a class, we are creating a new data type
A) TrueB) False
-
What is the output of the following? // A simple example of recursion.class Factorial { // this is a recursive method int fact(int n) { int result; if(n==1) return 1; result = fact(n-1) * n; return result; }} class Recursion { public static void main(String args[]) { Factorial f = new Factorial(); System.out.println("Factorial of 3 is " + f.fact(3)); }}
A) Factorial of 3 is 3B) Factorial of 3 is 6C) Factorial of 3 is 9D) None of the above
-
-
-
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[]){
}
} -
-
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 Classes Questions
Ans