设x = True, y = False, 则下列逻辑表达式中结果为True的是____。
A: x and y
B: x or y
C: not x
D: x and y or y
A: x and y
B: x or y
C: not x
D: x and y or y
B
举一反三
- x=True y=False print("x or y = ", x or y) 运行结果是哪个() A: x or y =True B: x or y =False C: x or y = True D: x or y=False
- 下列对逻辑运算符描述错误的是()。 A: 执行x and y,如果x为False,y为True,结果为False B: 执行x or y,如果x为False,y为True,结果为True C: 逻辑运算符and or not,遵循书写顺序从左到右执行 D: 执行x and not y,如果x为True,y为False,结果为True
- 设x=True,y=False,则下列逻辑表达式中结果为True的是____。
- 若x=6,y=5则表达式intmax=x>y?x:y的结果为() A: 6 B: 5 C: true D: false
- 中国大学MOOC: 设x = True, y = False, 则下列逻辑表达式中结果为True的是____。
内容
- 0
已知x = 43,y = False;则表达式(x>=y and 'A' A: False B: 语法错 C: True D: "假"
- 1
已知x = 43,y = False;则表达式(x >= y and 'A' < 'B' and not y)的值是: A: False B: 语法错 C: True D: "假"
- 2
假设x=6, y=3,!(x==y)的结果为( ) A: true B: false C: D:
- 3
已知x=7.5,y=2,z=3.6。表达式x>y And z>x Or x<y And Not z>y的值是( )。 A: False B: True C: 1 D: 0
- 4
当int x = 3 , y = 4时,表达式boolean b =x == y ? true : false的结果是false(