【判断题】【消耗次数:1】
2×4表的卡方检验的自由度为2。
正确
错误
参考答案:
复制
纠错
相关题目
【单选题】 3×4表的卡方检验的自由度为:
①  12
②  6
③  2
④  1
【单选题】 R×C表的卡方检验的自由度为:
①  R-1
②  C-1
③  RC-1
④  (R-1)(C-1)
【单选题】 四格表χ2检验的自由度是( )
①  0
②  1
③  2
④  4
【单选题】 在二行三列表x2检验中,x2=10.05,确定p值时,自由度等于
①  3
②  2
③  1
④  6
⑤  4
【单选题】 不计轴向变形,图2结构的振动自由度为( )。图2
①  1
②  2
③  3
④  4
【单选题】 卡方检验中自由度的计算公式是( )
①  行数×列数
②  n-1
③  N-k
④  (行数-1)(列数-1)
【单选题】 四个样本率作比较,卡方值大于自由度为3,尾部概率为0.01的卡方界值,可以认为( )
①  各总体率不同或不全相同
②  各总体率均不相同
③  各样本率均不相同
④  各样本率不同或不全相同
【单选题】 直线回归系数假设检验,其自由度为( )。
①  n
②  n-1
③  n-2
④  n+1
【单选题】 四格表的自由度________。
①  1
②  2
③  3
④  4
【单选题】 对两样本均数作t检验,n1=20,n2=20,其自由度等于( )
①  19
②  20
③  38
④  39
随机题目
【单选题】 已知有定义:String s=I love,下面哪个表达式正确?( )
①  s += you;
②  char c = s[1];
③  int len = s.length;
④  String s = s.toLowerCase();
【单选题】 下列代码中给出正确的在方法体内抛出异常的是( )
①  new throw Exception( );
②  throw new Exception( );
③  throws IOException();
④  throws IOException;
【单选题】 Container 是下列哪一个类的子类( )。
①  Graphics
②  Window
③  Applet
④  Component
【单选题】 Java系统标准输出对象System.out使用的输出流是( )。
①  PrintStream
②  PrintWriter
③  DataOutputStream
④  FileReader
【单选题】 能读入字节数据进行Java基本数据类型判断过虑的类是( )。
①  BufferedInputStream
②  FileInputStream
③  DataInputStream
④  FileReader
【单选题】 运行下面程序时,会产生什么异常?( ) public class X7_1_5 { public static void main(String[] args) { int[] z = { 1,2,3,4 } ; int p = z[4]; int x = 0; int y = 5/x; } }
①  ArithmeticException
②  NumberFormatException
③  ArrayIndexOutOfBoundsException
④  IOException
【单选题】 下列哪一个是Java系统的标准输入流对象( )。
①  System.out
②  System.in
③  System.exit
④  System.err
【单选题】 下列关于线程优先级的说法中,错误的一项是( )。
①  MIN_PRIORITY 代表最低优先级
②  MAX_PRIORITY 代表最高优先级
③  NORM_PRIORITY 代表普通优先级
④  代表优先级的常数值越大优先级越低
【单选题】 下面哪个可以改变容器的布局?( )
①  setLayout(aLayoutManager);
②  addLayout(aLayoutManager);
③  layout(aLayoutManager);
④  setLayoutManager(aLayoutManager);
【单选题】 下列哪种异常是检查型异常,需要在编写程序时声明 ( )
①  NullPointerException
②  ClassCastException
③  FileNotFoundException
④  IndexOutOfBoundsException