5 What is Java exception handling?
In Java, exceptions are objects. When you throw an exception, you throw an object. However, you can’t throw just any object as an exception — only those objects whose classes descend from throwable. Throwable serves as the base class for an entire family of classes, declared in java.lang, that your program can instantiate and throw.
| Is This Answer Correct ? | 0 Yes | 0 No |
using equals method overriding which objects are compared?i.e same class objects or other class objects?Explain me.
What is command line argument in java?
What is application system?
Why do we need public static void main(String args[]) method in Java...?
What is strings in java?
How do you include a string in java?
What are scalar data types?
What is a class ?
How many objects are created when we create String class object using new operator?
What is the maximum size of byte array in java?
What is the impact of declaring a method as final?
What is the difference between applet and application?