用正态误差分布中相应于一定置信水平的置信系数与均方差之积表达的误差限可称为()。
A、不确定度
B、准确度
C、精密度
D、正确度
参考答案:A
(11·柳州)方程x2-4=0的解是
A.x=2
B.x=-2
C.x=±2
D.x=±4
下面程序段的输出结果为 public class Test int a,b; Test() a=100; b=200;Test(int x,int y) a=x; b=y;public static void main(String args[]) Test Obj1=new Test(12,45); System.out.println(”a=”+Obj 1.a+” b=”+Obj 1.b); Test Obj2=new Test(); System.out.println(”a=”+Obj 2.a+” b=”+Obj 2.b);
A.a=100 b=200a=12 b=45
B.a=12 b=45a=100 b=200
C.a=12 b=200a=100 b=45
D.a=100 b=45a=12 b=200