设a = True ,b = True ,c = False,以下表达式值为False的是()A、a or b or c   B、(not a or b )and( b or c )C、False or not a and b or not c  D、not a and not b and (12 in [1..10] )

题目

设a = True ,b = True ,c = False,以下表达式值为False的是()

  • A、a or b or c   
  • B、(not a or b )and( b or c )
  • C、False or not a and b or not c  
  • D、not a and not b and (12 in [1..10] )

相似考题
更多“设a = True ,b = True ,c = False,以下表达式值为False的是()A、a or b or c   B、(not a or b )and( b or c )C、False or not a and b or not c  D、not a and not b and (12 in [1..10] )”相关问题
  • 第1题:

    下面程序段的输出结果为( )。 public class Test { public static void main(String args[]) { booleana,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=true

    B.a=true b=false b=true c=false

    C.a=true b=true b=true c=false

    D.a=false b=false b=true c=false


    正确答案:C
    C。【解析】本题考查关系运算符<和==。题目中a=(3<5);比较3和5的大小,因为3<5,返回true给a;b=(a==true);判断a是否为真,因为a确实为真,返回true给b;c=(b==false);判断b是否为假,因为b不为假,返回false给e。最后结果a=true,b=true,b=true,e=false,选项C正确。

  • 第2题:

    下面程序段的输出结果为( )。

    A.a=true b=false b=true C=true

    B.a=true b=false b=true e=false

    C.a=true b=true b=true C=false

    D.a=false b=false b=true C=false


    正确答案:C
    本题考查关系运算符<和==。题目中a=(3<5);比较3和5的大小,因为,3<5,返回true给a;b=(a==true);判断a是否为真,因为a确实为真,返回true给b;c=(b==false);判断h是否为假,因为b不为假,返回false给c。最后结果a=true,b=true,b=true,C=false,选项C正确。

  • 第3题:

    下面程序段的输出结果为 public class Test { public static void main(String args[]) { boolean a,b,c; a=(3<5); b=(a==true); System.out.printin( "a="+a+"b="+b) ; c-(b==false); System.out.println(b="+b+"e="+c) ; } }

    A.a=true b=false b=true c=false

    B.a=true b=false b=true c=true

    C.a=true b=true b=true c=false

    D.a=false b=false b=true c=false


    正确答案:C
    解析:本题考查关系运算符和==。题目中a=(35);比较3和5的大小,因为35,返回true给a:b=(a==true);判断a是否为真,因为a确实为真,返回true给b;c=(b==false);判断b是否为假,因为b不为假,返回false给c。最后结果a=true,b==true,b=true,c=false,选项C正确。

  • 第4题:

    在Excel97升序排序中,()。

    A逻辑值TRUE在FALSE之前

    B逻辑值FALSE在TRUE之前

    C逻辑值TRUE和FALSE等值

    D逻辑值TRUE和FALSE保持原始次序


    B

  • 第5题:

    以下3个表达式的结果分别是?() 0===’0’ ’0’==false 1===true

    • A、false,true,false
    • B、true,true,false
    • C、false,false,true
    • D、true,true,true

    正确答案:A

  • 第6题:

    设逻辑变量X为True,Y、Z均为False,以下逻辑表达式值为True的是()。

    • A、XOR(YANDZ)
    • B、(XANDY)ORZ
    • C、(NOTX)ORYORZ
    • D、XAND(YORZ)

    正确答案:A

  • 第7题:

    表达式False + 12的值是数值12;表达式True + 12的值是数值11。


    正确答案:正确

  • 第8题:

    A为True,B为False,则"AandB"和"AOrB"的值分别是()

    • A、True,True
    • B、True,False
    • C、False,True
    • D、False,False

    正确答案:C

  • 第9题:

    条件表达式(result)?"true":"false"的意义是(),其中result是逻辑表达式。

    • A、如果result为true,则表达式的值是true,否则为false
    • B、如果result为false,则表达式的值是true,否则为false
    • C、如果result为true,则表达式的值是false,否则为true
    • D、表达式错误

    正确答案:A

  • 第10题:

    单选题
    设A=True,B=False,C=True,D=False,以下逻辑运算表达式值为真的是()
    A

    (A∧B)∨(C∧D∨﹁A)

    B

    ((﹁A∧B) ∨C)∧﹁D

    C

    (B∨C∨D) ∧D∧A

    D

    A∧(D∨﹁C)∧B


    正确答案: D
    解析: 暂无解析

  • 第11题:

    单选题
    条件表达式(result)?"true":"false"的意义是(),其中result是逻辑表达式。
    A

    如果result为true,则表达式的值是true,否则为false

    B

    如果result为false,则表达式的值是true,否则为false

    C

    如果result为true,则表达式的值是false,否则为true

    D

    表达式错误


    正确答案: B
    解析: 暂无解析

  • 第12题:

    判断题
    当a=True,b=False,c=True时,表达式“a Or b And Not c”的值为True。
    A

    B


    正确答案:
    解析: 暂无解析

  • 第13题:

    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=false

    B.a=true b=false b=true c=true

    C.a=true b=true b=true c=false

    D.a=false b=false b=true c=false


    正确答案:C

  • 第14题:

    下面程序段的输出结果为 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.printhln(”b=”+b+”c=”+c) ; } }

    A.a=true b=false b=true c=false

    B.a=true b=false b=true c=true

    C.a=true b=true b=tree c=false

    D.a=false b=false b=tree c=false


    正确答案:C
    解析:本题考查关系运算符<和=。题目中a=(3<5);比较3和5的大小,因为3<5,返回true给a:b=(a==true);判断a是否为真,因为a确实为真,返回true给b;c =(b==false);判断b是否为假,因为b不为假,返回false给c。最后结果a=true,b=tree, b==true,c=false,选项C正确。

  • 第15题:

    下面程序段的输出结果为( )。 public class Test { public static void main(String args[]) { booleana,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=true

    B.a=true b=false b=true c=false

    C.a=false b=true b=true c=false

    D.a=false b=false b=true c=false


    正确答案:C
    C。【解析】本题考查关系运算符<和==。题目中a=(3<5);比较3和5的大小,因为3<5,返回true给a;b=(a==true);判断a是否为真,因为a确实为真,返回true给b;c=(b==false);判断b是否为假,因为b不为假,返回false给e。最后结果a=true,b=true,b=true,e=false,选项C正确。

  • 第16题:

    表达式False + 12的值是数值12;表达式True + 12的值是数值11。

    A

    B



  • 第17题:

    设A=True,B=False,C=True,D=False,以下逻辑运算表达式值为真的是()

    • A、(A∧B)∨(C∧D∨﹁A)
    • B、((﹁A∧B) ∨C)∧﹁D
    • C、(B∨C∨D) ∧D∧A
    • D、A∧(D∨﹁C)∧B

    正确答案:B

  • 第18题:

    当a=True,b=False,c=True时,表达式“a Or b And Not c”的值为True。


    正确答案:正确

  • 第19题:

    逻辑表达式的值只有两个:True和False。当逻辑表达式成立,其值为();不成立,其值为()。

    • A、True;True
    • B、False;True
    • C、False;False
    • D、True;False

    正确答案:D

  • 第20题:

    在Excel的升序排序中()。

    • A、逻辑值FALSE在TRUE之前
    • B、逻辑值TRUE在FALSE之前
    • C、逻辑值TRUE和FALSE等值
    • D、逻辑值TRUE和FALSE保持原始次序

    正确答案:A

  • 第21题:

    单选题
    设a = True ,b = True ,c = False,以下表达式值为False的是()
    A

    a or b or c   

    B

    (not a or b )and( b or c )

    C

    False or not a and b or not c  

    D

    not a and not b and (12 in [1..10] )


    正确答案: C
    解析: 暂无解析

  • 第22题:

    单选题
    设逻辑变量X为True,Y、Z均为False,以下逻辑表达式值为True的是()。
    A

    XOR(YANDZ)

    B

    (XANDY)ORZ

    C

    (NOTX)ORYORZ

    D

    XAND(YORZ)


    正确答案: C
    解析: 暂无解析

  • 第23题:

    单选题
    在Excel97升序排序中,()。
    A

    逻辑值TRUE在FALSE之前

    B

    逻辑值FALSE在TRUE之前

    C

    逻辑值TRUE和FALSE等值

    D

    逻辑值TRUE和FALSE保持原始次序


    正确答案: B
    解析: 暂无解析