Static import is a new feature introduced in j2SE 5.0. It allows the static members of the imported class to…
November 12th, 2009
What will be the output of the following program?
No Comments, Java Questions, by Daisy Williams.class Ques{ public static void main (String[] argv){ int p1 = 0102; int p2 = -10; int mod = p1…
August 29th, 2009
What is an instanceOf operator?
No Comments, Java Facts, by Daisy Williams.The instanceof operator is a binary operator that determines at runtime whether its left operand is an instance of its…