What are user defined exceptions?
No Answer is Posted For this Question
Be the First to Post Answer
int a=1,b=10; System.out.println(a+b--);
I declared main() method as private. But it still running and displaying the output. Please Answer it . Code Snippet as Below: import java.io.*; class over { private static void main(String[] args) { int high = Integer.MAX_VALUE; int overflow = high + 1; int low = Integer.MIN_VALUE; int underflow = low - 1; System.out.println(high + "\n" +overflow +"\n"+ low +"\n"+underflow); //System.out.println(overflow); //System.out.println(low); //System.out.println(underflow); } }
Explain the relationship between the Canvas and Graphics class?
What exceptions occur during serialization?
What is meant by Session? Explain something about HTTP Session Class?
how we can make a write-only class in java?
What is a modifier?
Explain about the select method with an example?
can we have function for truncating the sign as like abs in oracle.
What is core java used for?
What is a lightweight component?
When should you use arraylist and when should you use linkedlist?