What is the difference between sop and work instruction?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we need autoboxing in java?
How does marker interface provides functionality to the implemented class ? or How dose maker interface gets the functionalities as serialization or cloning.
What’s the difference between unit, integration and functional testing?
What is a local block?
What is the difference between abstract class and interface?
What is package private scope in java?
Is Java is 100% pure OOPS? Explain?
What is string pool?
Can we store variables in local blocks?
What is a nested structure?
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); } }
How does split work in java?