What is the null?
No Answer is Posted For this Question
Be the First to Post Answer
What languages are pass by reference?
I want my class to be developed in such a way that no other class (even derived class) can create its objects. How can I do so?
What is meant by Static query and Dynamic query?
What is Servlet?
Is stringwriter thread safe?
what is life cycle of applet?
what are variables 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); } }
what are three ways in which a thread can enter the waiting state? Or what are different ways in which a thread can enter the waiting state? : Java thread
I want to run a simple hello world java (HelloWorld.java) program using a batch file. How can i run it and how to construct a batch file.
Explain the transient field modifier?
How do you write a conditional statement?