举一反三
- 数组x定义:String x[ ][ ]=new int[3][2]; x[0 ][0 ]=”abc”, x[0 ][1]=”12345”;<br/>则 x.length 的值为______ ,x[0][1].leng()的值为______ 。
- 若函数y=f(x)的定义域是[0,2],则函数的定义域是[ ]
- 设置单元格填充为0的HTML代码 ( )。 未知类型:{'options': ['[table cellspacing=0]', '[table cellspacing="0"]', '[table cellpadding="0"]', '[table cellpadding=0]'], 'type': 102}
- 定义如下矩阵a,b,则选项中输出结果与b矩阵相同的是_______。 a = np.mat([[0,1],[2,3]]) b = np.mat([[1,0],[0,1]])
- ls=[ [1,2,3,4],['a','b','c','d'],['列','表'] ][br][/br] 请写出结果: ls[0] (1) ls[0][0] (2) ls[1][0:2] (3)
内容
- 0
已知函数f[lg(x+1)]的定义域是(0、9],则f(x2)的定义域是( )A、[-1,1]B、(-1,1)C、[-1,0)∪(0,1]D、(-1,0)∪(0,1)
- 1
float f[][][] = new float[3][][]; float f0 = 1.0f; float[][] farray = new float[1][1]; What is valid?() A: f[0] = f0; B: f[0] = farray; C: f[0] = farray[0]; D: f[0] = farray[0][0];
- 2
inta[ 2 ][ 3 ]={{1,2},{1}}; a[0][1]的值是 A: 2 B: 0
- 3
定义如下矩阵a,b,则选项中输出结果与b矩阵相同的是_______。a = np.mat([[0,1],[2,3]])b = np.mat([[1,0],[0,1]]) A: a.I B: a.T C: a.I*a D: a.T*a
- 4
定义如下矩阵a,b,则选项中输出结果与b矩阵相同的是_。a = np.mat([[0,1],[2,3]])b = np.mat([[1,0],[0,1]])() A: I B: a.T C: a.Ia D: a.Ta