单选题Given: 1. 3.${5 + 3 lt 6} 4.${requestScope[’foo’][0] ne 10 div 0} 5. ${10 div 0} What is the result?()ATrue trueBFalse trueCFalse true 0DTrue true InfinityEFalse true Infinity
单选题
Given: 1. 3.${5 + 3 lt 6} 4.${requestScope[’foo’][0] ne 10 div 0} 5. ${10 div 0} What is the result?()
A
True true
B
False true
C
False true 0
D
True true Infinity
E
False true Infinity
参考解析
解析:
暂无解析
相关考题:
以下程序booleana=false;booleanb=true;ooleanc=(abintresult=c==false?1:2;执行完后,c与result的值是()。 A.c=false;result=1;B.c=true;result=2;C.c=true;result=1;D.c=false;result=2;
下面哪个函数可以返回逻辑值TRUE()。 A、AND(TRUE,TRUE,FALSE)B、OR(TRUE,TRUE,FALSE)C、OR(FALSE,FALSE,FALSE)D、NOT(TRUE)
下面程序段的输出结果为( )。 public class Test { public static void main(String args[]) { booleana,b,C; a=(35): b=(a= =true); System.out.println("a="+a+"b="+b); c=(b= =false); System.out.println("b="+b+"c="+c); } }A.a=true b=false b=true c=trueB.a=true b=false b=true c=falseC.a=true b=true b=true c=falseD.a=false b=false b=true c=false
Given:1.%int[]nums={42,420,4200};2.request.setAttribute(foo,nums);%3.${5+3lt6}4.${requestScope[’foo’][0]ne10div0}5.${10div0}Whatistheresult?() A.TruetrueB.FalsetrueC.Falsetrue0D.TruetrueInfinityE.FalsetrueInfinity
3下面程序段的输出结果为( )。 mblic class Test public static void main(String args[]) { boolean a,b,c; a=(3<5); b=(a==true); System.out.println("a="+a+"b="+b); c=(b=false); System.out.println("b="+b+"c="+c); } }A.a=true b=false b=true c=falseB.a=true b=false b=true c=trueC.a=true b=true b=true c=falseD.a=false b=false b=true c=false
boolean a=false;boolean b=true;boolean c=(ab)(!b);boolean result=(ab)(!b); boolean result=(ab)(!b); 执行完后,正确的结果是( )。A.c=false;result=falseB.c=true,result=trueC.c=true;result=falseD.c=false;result=true
下面程序段的输出结果为 public class Test { public static void main(String args[]) { boolean a,b,c; a=(3<5); b=(a==true); System.out.println("a="+a+"b="+B); c=(b==false); System.out.println("b="+b+"c="+C); } }A.a=true b=false b=true c=falseB.a=true b=false b=true c=trueC.a=true b=true b=true c=falseD.a=false b=false b=true c=false
下面程序段: boolean a=false; boolean b=true; boolean c=(a||b)(b); boolean result=(a|b)(b); 执行完后,正确的结果是A.c=false;result=falseB.c=true,result=trueC.c=true;result=falseD.c=false;result=true
下面程序段的输出结果为( )。A.a=true b=false b=true C=trueB.a=true b=false b=true e=falseC.a=true b=true b=true C=falseD.a=false b=false b=true C=false
为使标题栏上的这两个按钮消失,而保留其他按钮,没置窗体属性时,正确的是A.ControlBox=True、MaxButton=False、MinButton=TrueB.ControlBox=False、MaxButton=True、MinButton=TrueC.ControlBox=True、MaxButton=False、MinButton=FalseD.ControlBox=False、MaxButton=False、MinButton=False
下面程序段的输出结果为 public class Test { public static void main(String args[]) { boolean a,b,c; a=(35); b=(a==true); System.out.println(”a=”+a+”b=+b) ; c=(b==false); System.out.printhln(”b=”+b+”c=”+c) ; } }A.a=true b=false b=true c=falseB.a=true b=false b=true c=trueC.a=true b=true b=tree c=falseD.a=false b=false b=tree c=false
下面程序段: boolean a=false; boolean b=true; boolean c=(aB) (!B) ; boolean result=(aB) (!B) ; 执行完后,正确的结果是( )。A.c=false;result=falseB.c=true,result=trueC.c=tree;result=falseD.c=false;result=trae
下面程序段的输出结果为( )。 public class Test { public static void main(String args[]) { booleana,b,C; a=(35): b=(a= =true); System.out.println("a="+a+"b="+b); c=(b= =false); System.out.println("b="+b+"c="+c); } }A.a=true b=false b=true c=trueB.a=true b=false b=true c=falseC.a=false b=true b=true c=falseD.a=false b=false b=true c=false
下列选项中,哪个是程序的运行结果class Test{public static void main(String[] args) {int a = 3;int b = 6;System.out.print(a==b);System.out.print(aSystem.out.print(a!=b);System.out.print(a>=b);}} A.false false true falseB.false false true trueC.false true true falseD.true false false true
关于a or b的描述错误的是( )。 A.若a=True b=True 则 a or b ==TrueB.若a=True b=False 则 a or b ==TrueC.若a=True b=True 则 a or b ==FalseD.若a=False b=False 则 a or b ==False
以下的布尔代数运算错误的是() A.(True or x) == TrueB.not (a and b) == not (a) and not (b)C.(False and x) == FalseD.(True or False) == True
public void foo( boolean a, boolean b ){ if( a ) { System.out.println( “A” ); } else if ( a b ) { System.out.println( “AB” ); } else { 17. if ( !b ) { System.out.println( “notB” ); } else { System.out.println( “ELSE” ); } } } What is correct?() A、 If a is true and b is true then the output is “AB”.B、 If a is true and b is false then the output is “notB”.C、 If a is false and b is true then the output is “ELSE”.D、 If a is false and b is false then the output is “ELSE”.
以下3个表达式的结果分别是?() 0===’0’ ’0’==false 1===trueA、false,true,falseB、true,true,falseC、false,false,trueD、true,true,true
Given: 6.% int[] nums = {42, 420, 4200}; 7.request.setAttribute("foo", nums); % Which two successfully translate and result in a value of true?()A、${true or false}B、${requestScope[foo][0] 500}C、${requestScope[’foo’][1] = 420}D、${(requestScope[’foo’][0] lt 50) (3 gt 2)}
逻辑表达式的值只有两个:True和False。当逻辑表达式成立,其值为();不成立,其值为()。A、True;TrueB、False;TrueC、False;FalseD、True;False
将逻辑型数据转换成整型数据,转换规则是()A、将True转换为-1,将False转换为0B、将True转换为1,将False转换为-1C、将True转换为0,将False转换为-1D、将True转换为1,将False转换为0
Given: 8.int index = 1: 9.Boolean [] test = new boolcan [3]; 10.boolcan foo = test [index]; What is the result()? A、 foo has the value of 0.B、 foo has the value of null.C、 foo has the value of true.D、 foo has the value of false.E、 An-exception is thrown.F、 The code will not compile.
Given: 1.% int[] nums = {42,420,4200}; 2.request.setAttribute("foo", nums); % 3.${5 + 3 lt 6} 4.${requestScope[’foo’][0] ne 10 div 0} 5. ${10 div 0} What is the result?()A、True trueB、False trueC、False true 0D、True true InfinityE、False true Infinity
多选题Given: 6. Which two successfully translate and result in a value of true?()A${true or false}B${requestScope[foo][0] 500}C${requestScope[’foo’][1] = 420}D${(requestScope[’foo’][0] lt 50) (3 gt 2)}
单选题将逻辑型数据转换成整型数据,转换规则是()A将True转换为-1,将False转换为0B将True转换为1,将False转换为-1C将True转换为0,将False转换为-1D将True转换为1,将False转换为0
单选题Given: 1. 3.${5 + 3 lt 6} 4.${requestScope[’foo’][0] ne 10 div 0} 5. ${10 div 0} What is the result?()ATrue trueBFalse trueCFalse true 0DTrue true InfinityEFalse true Infinity