1. [单选题]下列______操作是Applet可以做的。
A. 访问客户端系统的一部分信息
B. 访问客户端的文件系统
C. 在客户端访问电子邮件地址(mail address)
D. 在客户端调用本地动态链接库
2. [单选题]有以下程序: voidf(int*x,int * y) { int t; t= *x;*x= *y;*y=t; } main() { inta[8]={1,2,3,4,5,6,7,8},i,*p,*q; p=a;q=&a[7]; while(p) { f(p,q);p++;q--;} for(i=0;i8;i++)printf("%d,",a[i]); } 程序运行后的输出结果是______;
A. 8,2,3,4,5,6,7,1,
B. 5,6,7,8,1,2,3,4,
C. 1,2,3,4,5,6,7,8,
D. 8,7,6,5,4,3,2,1,
3. [单选题]表格常用的列属性有
A. Controlsouree
B. CurrentControl
C. Sparse
D. 以上三项都正确
4. [单选题]以下程序的输出结果是______。 main() { char st[20]="hello\0\t\\"; printf("%d%d\n",strlen(st),sizeof(st)); }
A. 99
B. 520
C. 1320
D. 2020
5. [单选题]以下选项中,能定义s为合法的结构件变量的是_______。
A. typedef struct abc { double a; char b[10]; }s;
B. struct { double a; char b[10]; }s
C. struct ABC { double a; char b[10]; } ABCs;
D. typedef ABC { double a; char b[10]; } ABCs;