Model Test 1 (15选10)
Model Test 1 (15选10)
var t = 10; function test(test){ t = t + test; console.log(t); var t = 3; } test(t); console.log(t); 运行结果是( )? A: 3 3 B: 3 10 C: NaN 10 D: NaN 3
var t = 10; function test(test){ t = t + test; console.log(t); var t = 3; } test(t); console.log(t); 运行结果是( )? A: 3 3 B: 3 10 C: NaN 10 D: NaN 3
若有以下结构体,则正确的定义或引用是 struct Test int x; int y: v1; A: Test.x=10; B: Test v2;v2.x=10; C: struct v2;v2.x=10; D: struct Test v2=10;
若有以下结构体,则正确的定义或引用是 struct Test int x; int y: v1; A: Test.x=10; B: Test v2;v2.x=10; C: struct v2;v2.x=10; D: struct Test v2=10;
var a = 10; function test() { console.log(a); var a = 100; console.log(a); } test(); console.log(a);
var a = 10; function test() { console.log(a); var a = 100; console.log(a); } test(); console.log(a);
如果创建了一个为PKG_USER的程序包,并在程序包中包含了名为test的过程。下列哪一个是对这个过程的合法调用。 A: test(10) B: PKG_USER.test(10) C: test.PKG_USER(10) D: test(10).PKG_USER
如果创建了一个为PKG_USER的程序包,并在程序包中包含了名为test的过程。下列哪一个是对这个过程的合法调用。 A: test(10) B: PKG_USER.test(10) C: test.PKG_USER(10) D: test(10).PKG_USER
查看如下代码:function test(a) {a = a + 10;}var a = 10;test(a);console.log(a);上述代码执行后,输出变量a的值为()。 A: 10 B: 20 C: 错误 D: undefined
查看如下代码:function test(a) {a = a + 10;}var a = 10;test(a);console.log(a);上述代码执行后,输出变量a的值为()。 A: 10 B: 20 C: 错误 D: undefined
阅读下面的程序:[br][/br]class Test:[br][/br]data1 = 10[br][/br]def __str__(self): return "data1 = %d" % (self.data1)[br][/br]test = Test()[br][/br]print(test)[br][/br]print(repr(test))[br][/br]上述程序最终执行的结果为()。 A: 面向对象.Test object at 0x101ca12e8>data1 = 10 B: 面向对象.Test object at 0x101ca12e8><面向对象.Test object at 0x101ca12e8 C: data1 = 10data1 = 10 D: data1 = 10
阅读下面的程序:[br][/br]class Test:[br][/br]data1 = 10[br][/br]def __str__(self): return "data1 = %d" % (self.data1)[br][/br]test = Test()[br][/br]print(test)[br][/br]print(repr(test))[br][/br]上述程序最终执行的结果为()。 A: 面向对象.Test object at 0x101ca12e8>data1 = 10 B: 面向对象.Test object at 0x101ca12e8><面向对象.Test object at 0x101ca12e8 C: data1 = 10data1 = 10 D: data1 = 10
如下代码定义了一个类Test: class Test { private int y; Test (int x) { y:x; } }现在为Test 类生成一个对象,正确的语句是( )。 A: Test t = new Test( ); B: Test t=new Test(10, 20); C: Test t; D: Test t=new Test(10);
如下代码定义了一个类Test: class Test { private int y; Test (int x) { y:x; } }现在为Test 类生成一个对象,正确的语句是( )。 A: Test t = new Test( ); B: Test t=new Test(10, 20); C: Test t; D: Test t=new Test(10);
vart=10;functiontest(test){t=t+test;console.log(t);vart=3;}test(t);console.log(t);运行结果是()? A: 3 3 B: NaN 10 C: NaN 3 D: 3 10
vart=10;functiontest(test){t=t+test;console.log(t);vart=3;}test(t);console.log(t);运行结果是()? A: 3 3 B: NaN 10 C: NaN 3 D: 3 10
分析下段代码输出结果是 var a = 10; function test(a){ a -=3; } test(a); console.log(a);
分析下段代码输出结果是 var a = 10; function test(a){ a -=3; } test(a); console.log(a);