Why does the integer quotient -0/3 yield 0, but the double quotient -0.0/3.0 yields – 0.0?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the importance of finally over return statement?
What is linkedlist in java?
What is a condition in programming?
List two java ide’s?
What is rule of accessibility in java?
How many types of array are there?
How many types of variables are there?
What are default methods ?
What are the object and class classes used for?
Does java support multiple inheritance or not?
Is static a singleton?
is it mandatory to deaclare all variables public static fianl in interfaces?if i declare like in the below program, public interface A { public static final int I=0; int j=0; } in interface A,what is the difference between I,j?