boolean数据类型的数据只有true和false两个值。()
boolean数据类型的数据只有true和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
下面程序段: 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.逻辑数据类型用于逻辑判断,它只有True和False两个值B.Visual Basic中所有未定义的变量的默认数据类型是字符型C.对象变量作为32位(4个字节)地址来存储D.日期型数据的存储空间占用8字节
下面程序段: 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 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”.
逻辑表达式的值只有两个:True和False。当逻辑表达式成立,其值为();不成立,其值为()。A、True;TrueB、False;TrueC、False;FalseD、True;False
下列关于数据类型的说法中,错误的是()。A、Java中的数据类型分为基本数据类型和引用数据类型B、int类型数据占4个字节C、浮点数类型变量不能赋予一个整数数值D、布尔类型的变量只有true和false这两个值
单选题逻辑表达式的值只有两个:True和False。当逻辑表达式成立,其值为();不成立,其值为()。ATrue;TrueBFalse;TrueCFalse;FalseDTrue;False
单选题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”.
单选题下列关于数据类型的说法中,错误的是()。AJava中的数据类型分为基本数据类型和引用数据类型Bint类型数据占4个字节C浮点数类型变量不能赋予一个整数数值D布尔类型的变量只有true和false这两个值
判断题boolean数据类型的数据只有true和false两个值。()A对B错