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 |
What is equlas() and hashcode() contract in java? Where does it used?
How multipleInheritance is possible in java?
Which containers use a flowlayout as their default layout in java programming?
What is arraylist e in java?
how can you say that java is independ language
What is module in project?
solve this is my problem byte a=40,byte b=50 both add value is 90 this is with in range of byte... byte range is -128to 127.... why this pgm gives error like type mismatch.... package javapgms; public class byte1 { public static void main(String args[]) { byte a=40,b=50; byte c=a+b; System.out.println(c); } } note : dont use int k... a,b,c are in byte range... mind it..
Name container classes in java programming?
What does sprintf return?
What do you mean by garbage collection used in java?
What do you mean by order of precedence and associativity?
Is hashmap thread safe?