如下程序的运行结果是【9】。
CLEAR
STORE 100 TO x1 x2
SET UDFPARMS TO VALUE
DO p4 WITH x1,(X2)
?x1.x2
*过程p4
PROCEDURE p4
PARAMETERS x1,X2
STORE x1+1 TO x1
STORE x2+1 TO x2
ENDPROC
第1题:
若有以下程序: #include <iostream> using namespaces std; class A { public: A(){} A(int i) { x1=i; } void dispa() { cout<<'x1="<<x1<<","; } private: int x1; }; class B: public A { public: B(){} B(int i):A(i+10) { x2=i; } void dispb() { dispa(); cout<<"x2="<<x2<<end1; } private: int x2; }; int main() { B b(2); b.dispb(): return 0; } 程序运行后的输出结果是
A.x1=10,x2=2
B.x1=12,x2=10
C.x1=12,x2=2
D.x1=2,x2=2
第2题:
一个关系模式为Y(X1,X2,X3,X4),假定该关系存在如下函数依赖:(X1,X2)→X3、X2→x4,则该关系的码为______。
A.X1
B.X2
C.(X1,X2)
D.(X1,X2,X3,X4)
第3题:
若X~U[-a, a](a>0), X1,X2,...Xn是来自X的样本, 则a的极大似然估计是
A.max{X1,X2,...Xn}
B.max{|X1|,|X2|,...|Xn|}
C.min{|X1|,|X2|,...|Xn|}
D.min{X1,X2,...Xn}
第4题:
若有以下程序: #include <iostream> using namespace std; class A { public: A() { } A(int i) { x1=i; } void dispa0 { cout<<"x1="<<x1<<","; } private: int x1; }; class B: public A { public: B() { } B(int i):A(i+10) { x2=i; } void dispb() { dispa(); cout<<"x2="<<x2<<endl; } private: int x2; }; int main() { B b(2); b.dispb(); return 0; } 程序运行后的输出结果是( )。
A.x1=10,x2=2
B.x1=12,x2=10
C.x1=12,x2=2
D.x1=2,x2=2
第5题:
16、若X~U[-a, a](a>0), X1,X2,...Xn是来自X的样本, 则a的极大似然估计是
A.max{X1,X2,...Xn}
B.max{|X1|,|X2|,...|Xn|}
C.min{|X1|,|X2|,...|Xn|}
D.min{X1,X2,...Xn}