要求设置P1SEL的第0位为0,使用的代码是:( )。
A: P1SEL &= 0x01;
B: P1SEL &= ~0x00;
C: P1SEL &= ~0x01;
D: P1SEL |= 0x00;
A: P1SEL &= 0x01;
B: P1SEL &= ~0x00;
C: P1SEL &= ~0x01;
D: P1SEL |= 0x00;
举一反三
- 在语句assign Y = sel ? 0 : 1;中,当sel=0时,Y的值为( )? z|x|0|1
- 要设置CC2530的引脚P1_0为普通输入输出口,正确的代码是( )。 A: P1SEL &= ~0x10; B: P1SEL &= 0x01; C: P1SEL &= 0x10; D: P1SEL &= ~0x01;
- 设随机过程X(t)=At+(1-A)B, -∞<t<∞. 其中随机变量A与B独立同分布,P(A=0)=0.4, P(A=1)=0.6. 则以下选项正确的有( ). A: P(X(0)=1, X(1)=1)=0.24. B: P(X(0)=1, X(1)=0)=0.24. C: P(X(0)=0, X(1)=1)=0.36. D: P(X(0)=0, X(1)=0)=0.16.
- 下面哪种代码执行后是与其他结果不一样的? A: module mux2_1(a,b,sel,out); input a,b,sel; output out; assign out=(sel==1)?a:b; endmodule B: module mux2_1(a,b,sel,out); input a,b,sel; output out; reg out; always@(a or b or sel) begin case(sel) 0: out=a; 1: out=b; endcase end endmodule C: module mux2_1(a,b,sel,out); input a,b,sel; output out; reg out; always@(*) if(sel==0) out=a; else out=b; endmodule
- $给定公式\exists x P(x) \rightarrow \forall x P(x),当D=\{a,b\}时,解释( )使该公式真值为0 $ A: $ P(a)=0, \quad P(b)=0$ B: $P(a)=0, \quad P(b)=1 $ C: $P(a)=1, \quad P(b)=0 $ D: $P(a)=1, \quad P(b)=1 $