-
-
-
What a Java programmer calls a __________ , a C/C++ programmer calls a function
A) ClassesB) MethodC) FunctionD) Object
-
-
-
Java is Case ________
A) InsensitiveB) Sensitive
-
-
-
Java compiler is an executable code
A) TrueB) FalseExplanation: It is NOT an Execuatable Code. It is a Bytecode
-
-
When does the compiler supply a default constructor for a class
The compiler supplies a default constructor for a class if no other constructors areprovided.
-
-
-
-
-
-
-
-
-
What is the difference between overloading and overriding
Answered by Scott on 2005-05-12 09:44:53: Overloading: The same method name with a different signature (generally input argument list) written in the same class. Overriding: The identical method signature from a parent (super) class written in a subclass and modification of the method body occurs.
Java Interview Questions
Ans