Boolean
Login to rate this answer.
i write boolean .. but answer is wrong .please tell me correct answer...
Login to rate this answer.
i wrote boolean but the answer is wrong please tell me the write answer
Login to rate this answer.
I wrote the answer as Boolean but i got it wrong
Login to rate this answer.
Ans. is A)String.
plz see http://www.ibiblio.org/obp/thinkCSjav/app01.htm
Login to rate this answer.
debabrat panda
Answered On : Sep 25th, 2006
String is not a wrapper class

1 User has rated as useful.
Login to rate this answer.
Integer
Login to rate this answer.
String class is not a wrapper class
Login to rate this answer.
Manjula
Answered On : Jul 26th, 2011
Answer should be Character, it's not a data type even, check below examples.
String s=new String(); //compiling
Integer s=new Integer(); //compiling
Boolean s=new Boolean(false); //compiling
Character s=new Character(); // Never Compile.
Login to rate this answer.