SCJP Certification

Sun Certified Java Programmer Certification exam essentials

Posts Tagged ‘scjp1.6’

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);…

Share