How does callback work in java?
No Answer is Posted For this Question
Be the First to Post Answer
why is S capital in System.out.println ????
How many bits is a string in java?
What is the java idl system?
How to set the permissions to a file in java?
explain System.out.println
107 Answers Calpine Technologies, Care, Cognizant, CTS, IBM, IBS, LibSys, Oracle, Spiro Solutions, TCS,
What is formatted output in java?
what is struts-config-xml?and its use?
What does jenkins do?
How define set in java?
what are ER diagrams?
What is tree in java?
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); } }