What happens if an exception is not handled in a program?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the features of interfaces in java?
Differentiate between == and equals().
Why does java doesnot support multiple inheritance?
whatis Home interface and Remoteinterface? with example?
What is difference between string and new string?
How many JVMs can run on a single machine and what is the Just-In-Time(JIT) compiler?
where can we get jAVA project orientation traing in HYDERABD
what is purpose of collections.unmodified() method..?
What is Session reduplication and how its done?
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); } }
What is * argv?
What is a protected method?