This set of Java Multiple Choice Questions & Answers (MCQs) focuses on “Java.lang – Boolean Wrapper Advance”.
1. Which of these methods of Boolean wrapper returns boolean equivalent of an object.
a) getBool()
b) booleanValue()
c) getbooleanValue()
d) getboolValue()
View Answer
Explanation: None.
2. Which of the following constant are defined in Boolean wrapper?
a) TRUE
b) FALSE
c) TYPE
d) All of the mentioned
View Answer
Explanation: Boolean wrapper defines 3 constants – TRUE, FALSE & TYPE.
3. Which of these methods return string equivalent of Boolean object?
a) getString()
b) toString()
c) converString()
d) getStringObject()
View Answer
Explanation: None.
4. Which of these methods is used to know whether a string contains “true”?
a) valueOf()
b) valueOfString()
c) getString()
d) none of the mentioned
View Answer
Explanation: valueOf() returns true if the specified string contains “true” in lower or uppercase and false otherwise.
5. Which of these class have only one field?
a) Character
b) Boolean
c) Byte
d) void
View Answer
Explanation: Void class has only one field – TYPE, which holds a reference to the Class object for type void. We do not create an instance of this class.
6. What will be the output of the following Java program?
class Output
{
public static void main(String args[])
{
String str = "true";
boolean x = Boolean.valueOf(str);
System.out.print(x);
}
}
a) True
b) False
c) Compilation Error
d) Runtime Error
View Answer
Explanation: valueOf() returns true if the specified string contains “true” in lower or uppercase and false otherwise.
Output:
$ javac Output.java $ java Output true
7. What will be the output of the following Java program?
class Output
{
public static void main(String args[])
{
String str = "true false true";
boolean x = Boolean.valueOf(str);
System.out.print(x);
}
}
a) True
b) False
c) Compilation Error
d) Runtime Error
View Answer
Explanation: valueOf() returns true if the specified string contains “true” in lower or uppercase and false otherwise.
Output:
$ javac Output.java $ java Output false
8. What will be the output of the following Java program?
class Output
{
public static void main(String args[])
{
String str = "TRUE";
boolean x = Boolean.valueOf(str);
System.out.print(x);
}
}
a) True
b) False
c) Compilation Error
d) Runtime Error
View Answer
Explanation: valueOf() returns a Boolean instance representing the specified boolean value. If the specified boolean value is true, this method returns Boolean.TRUE; if it is false, this method returns Boolean.FALSE. If a new Boolean instance is not required, this method should generally be used in preference to the constructor Boolean(boolean), as this method is likely to yield significantly better space and time.
Output:
$ javac Output.java $ java Output true
9. What will be the output of the following Java program?
class Output
{
public static void main(String args[])
{
String str = "true false";
boolean x = Boolean.parseBoolean(str);
System.out.print(x);
}
}
a) True
b) False
c) System Dependent
d) Compilation Error
View Answer
Explanation: parseBoolean() Parses the string argument as a boolean. The boolean returned represents the value true if the string argument is not null and is equal, ignoring case, to the string “true”.
Example: Boolean.parseBoolean(“True”) returns true.
Example: Boolean.parseBoolean(“yes”) returns false.
Output:
$ javac Output.java $ java Output false
10. What will be the output of the following Java program?
class Output
{
public static void main(String args[])
{
String x = Boolean.toString(false);
}
}
a) True
b) False
c) System Dependent
d) Compilation Error
View Answer
Explanation: toString() Returns a String object representing the specified boolean. If the specified boolean is true, then the string “true” will be returned, otherwise the string “false” will be returned.
Output:
$ javac Output.java $ java Output false
Sanfoundry Global Education & Learning Series – Java Programming Language.
To practice all areas of Java language, here is complete set of 1000+ Multiple Choice Questions and Answers.
- Apply for Computer Science Internship
- Apply for Java Internship
- Practice Programming MCQs
- Check Java Books
- Practice BCA MCQs