Which types of exceptions are caught at compile time?
Answer / Hemant Khitaulia
Checked exceptions in Java are caught at compile-time. These are exceptions that extend the Exception or RuntimeException classes, but not its subclass RuntimeException.
| Is This Answer Correct ? | 0 Yes | 0 No |
class A { private int i; } class B extends A { private int i; } if I create an object of B class what will be the memory of that object.
What does a void function return?
Difference between doublesummarystatistics, intsummarystatistics and longsummarystatistics ?
Define canvas?
Explain about interrupt() method of thread class ?
Why do you canvas?
In how many ways we can do exception handling in java?
Define max and min heap, also the search time of heap.
Is it possible to override the main method?
Explain the available thread states in a high-level?
what is default layout of JFrame class?
How to check if linked list contains loop in java?