【单选题】下面代码的运行结果是( )。 public class Person { static int arr[] = new int [10]; public static void main(String args[]) { System.out.println(arr[9]); } }
【单选题】下面代码的运行结果是( )。 public class ConcatTest { public static void main (String[ ] args) { String str1 = 'abc' String str2 = 'ABC' String str3 = str1. coneat(str2) System. out. println(str3) } }
【多选题】设θ是总体的一个待估参数,现从总体中抽取容量为n的一个样本,从中得到参数θ的一个置
B.
100个置信区间中约有90个区间能包含真值θ
E.
100个置信区间中约有90个区间不能包含真值θ
【简答题】日负荷曲线是表示电力负荷在( )的变化。
【单选题】下面的java代码运行结果是( ) public class B { public static void main(String [] args) { int i =12; System.out.println(i*=++i); } }
【多选题】下列账户余额,在编制资产负债表时应列入“存货”项目金额的有( )
【多选题】设θ是总体的一个待估参数,现从总体中抽取容量为n的一个样本,从中得到参数θ的一个置信水平为90%的置信区间[θL,θU],下列提法不正确的是________。
【简答题】设从均值为μ,方差为σ2>0的总体中分别抽取容量为n1,n2的两独立样本,分别是两样本的均值.试证对于任意满足a+b设从均值为μ,方差为σ 2 >0的总体中分别抽取容量为n 1 ,n 2 的两独立样本,
【单选题】下面代码的运行结果是 public class Test{ public static void main(String args[]){ for(int i 0;i<3;i++){ if(i<2) continue; System.out.println(i); } } }