下面结果为不为真的表达式是:()
A: null==undefinedObject.prototype;
B: [1,2,3].splice(1,1,1)==[2]
C: letMi=newFunction();Mi.__proto__.__proto__==Object.prototype;
D: ’1’==true
A: null==undefinedObject.prototype;
B: [1,2,3].splice(1,1,1)==[2]
C: letMi=newFunction();Mi.__proto__.__proto__==Object.prototype;
D: ’1’==true
举一反三
- 下面三个表达式中,正确的是(). 1. frame.setLocationRelativeTo(null);2. frame.setSize(100, 200);3. frame.setVisible(true); A: 1 2 3 B: 1 3 2 C: 2 1 3 D: 3 2 1
- 以下表达式,结果为True的有哪些? A: 2>1 or 3>2 B: 2>1 or 3<2 C: 2<1 or 3<2 D: 2>1 and 3<2
- 下列表达式的值为True的是( )。 A: (2**3)<(2*3) B: 2>1>1 C: 2!=1 and 1==1 D: not (1==1 and 0!=1)
- for(表达式1; ;表达式3)对表达式2理解错误的是( )。 A: 0 B: 1 C: True D: 真
- 下列表达式的值为True的是() A: (2**=3)<(2*=3) B: 3>2>2 C: 1==1 and 2!=1 D: not(1==1 and 0!=1)