Now days uCertify announces 60% discounts for First 100 customers who buy any 3 PrepKits for only 149.99. That’s a…
December 12th, 2009
What is the createNewFile() method of the File class?
No Comments, Java Questions, by Daisy Williams.The createNewFile() method of the File class is used to create a new empty file if a file with the…
December 5th, 2009
What will be the output of the following code?
No Comments, Java Questions, by Daisy Williams.class TestInstanceof { public static void main(String[] args) { Integer i=5; Boolean b; b=(i instanceof Integer); System.out.print(b); b=(i instanceof Number);…
December 4th, 2009
Which of the following operations are allowed for collection framework?
No Comments, Java Questions, by Daisy Williams.A: Adding objects to a collection B: Iterating through a collection C: Finding out if an object is in a…