A.D
B.L
C.C
D.N
[单选题]在Visual FoxPro中有如下程序文件TEST:执行命令DO TEST后,屏幕的显示结果为( )A.二级Visual FoxProB.计算机等级二级Visual FoxProC.计算机等级Visual FoxProD.计算机等级二级
[单选题]执行命令序列: STORE CTOD(”05/06/98”)T0 NDATE NDATE=NDATE+3 7NDATE 后,变量NDATE的显示值是( )。A.05/09/98B.08/06/98C.05/06/98D.08/09/98
[单选题]For a hypothesis test with a probability of a Type II error of 60% and a pr
[单选题]test命令主要提供了判断功能,语法格式为:test–[dfrwxs]file,其中-ffile表示()A . 文件file存在且为目录文件B . 文件file存在且为普通文件C . 文件file存在且文件长度为非零D . 文件file存在且为可执行文件
[单选题]If the significance level of a test is 0.05 and the probability of a Type I
[单选题]现在执行命令makeclear,实际执行的命令是()A . rm–fpr1*.oB . gcc–c–lprog.o prog.cC . gcc–c–osubr.o subr.cD . 都执行
[单选题]在Linux中,可以使用命令(63)来给test文件赋予执行权限。(63)A. [root@root]#chmod -x testB. [root@root]#chmod +x testC. [root@root]#chmod -w testD. [root@root]#chmod +w test
[单选题]用DIMENSION P(2) 定义了一个数组,紧接着执行命令?TYPE(‘P(1)’),其结果是( )。A.UB.NC.LD.C
[单选题]要向已有数据的c:/test/test.txt文件添加数据,正确的文件打开命令是()。A . Open〞c:/test/test.txt〞ForAppendAs#512B . Open〞c:/test/test.txt〞ForAppendAs#511C . Open〞c:/test/test.txt〞ForOutputAs#511D . Open〞c:/test/test.txt〞ForOutputAs#512
[单选题]执行如下程序: public class Test { public static void main (String args[]) { int x=1,a=0,b=0; switch (x) { case 0: b++; case 1: a++; case 2: a++;b++; } System.out.println("a=" +a ",b=" +b); } } 该程序的输出结果是( )。A.a=2,b=1B.a=1,b=1C.a=1,b=0D.a=2,b=2