public class Test{<br /> public static void main(String[]args){<br /> intx=5;<br /> boolean b1=true;<br /> boolean b2=false;<br /> if((x==4)&&!b2)<br /> System.out.print("l");<br /> System.out.print("2");<br /> if((b2=true)&&b1)<br /> System.out.print("3");<br /> }<br /> }<br /> What is the result?()
A、2
B、3
C、12
D、23
E、123
F、Compilation fails.
H、An exceptional ist hrown at runtime.