Is string a wrapper class?
what is Thread priority?
4 Answers Tech Mahindra, Wipro,
Why charat is used in java?
What is mnemonic in assembly language?
what is the need of the Ajax?
What is factor r?
What is the major difference between linkedlist and arraylist?
What is default exception handling in java?
what is difference between abstract and interface? can i give real time example for the two topics?
How to obtain a performance profile of java program
Superclass of exception
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 Remote Interface ?