booleanb = new Boolean("TRUE");boolean c = new Boolean("F");
boolean d = new Boolean(null);
System ("" + b + c + d);
What is the output by the code to the right?
A. true false false
B. true false true
C. false false false
D. There is no output due to a syntax error.
E. There is no output due to a runtimeerror.