which method throws exception of type Throwable
Answers were Sorted based on User's Feedback
Answer / vishal
Throwable is super class of Exception and Error class.
Hence we can have Throwable as a refrence to any thrown
exception.
| Is This Answer Correct ? | 5 Yes | 2 No |
Does java support multiple inheritance or not?
Can we convert stringbuilder to string in java?
4.1 Supply contracts (in the form of comments specifying pre- and post conditions) for the enqueue() method of the LinkedQueue class given in the Appendix. (2) 4.2 Let Thing be a class which is capable of cloning objects, and consider the code fragment: Thing thing1 = new Thing(); //(1) Thing thing2 = thing1; //(2) Thing thing3 = (Thing) thing1.clone(); //(3) Explain how the objects thing2 and thing3 differ from each other after execution of the statements. (
what is mutual exclusion? How can you take care of mutual exclusion using java threads? : Java thread
How to instantiate static nested classes in java?
What is string substring?
wat is final...? wat is finally...? wat is finalize....? difference between " final and finally and finalize "...?
How do you check if a string is lexicographically in java?
What is the difference between an inner class and a sub-class?
How does synchronized modifier work?
What is the parse method in java?
Is there a way to increase the size of an array after its declaration?