Can memory leak in java?
No Answer is Posted For this Question
Be the First to Post Answer
How do you write a conditional statement?
why we write public static void main (String args[]) in core java plz explain briefly??????????????????
What happens if main method is not static?
What is a heavyweight component?
what is multitherading
List primitive java types?
List out five keywords related to exception handling ?
when you will synchronize a piece of your code? : Java thread
What is an example of a keyword?
what is the need to set path in java? how many ways to set path in java? Explain breif?
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 the type of lambda expression?