【名词&注释】
计算结果(results)、存储单元(memory cell)、测试函数(test function)、全局变量(global variable)、扩展名(extension name)、形参数组名、第一个(first)、字符串长度(string length)、第二次(second one)、修饰符(modify symbol)
[单选题]在Visual FoxPro中创建项目,系统将建立一个项目文件,项目文件的扩展名是
A. pro
B. prj
C. pjx
D. itm
查看答案&解析查看所有试题
学习资料:
[单选题]有以下程序: void f(int*x,int*y) { int t; t=*x;*x=*y;*y=t; } main() { int a [8]={1, 2,3,4,5, 6, 7,8},i,*p,*q; p=a;q=&a[7]; while(pq) {f(p,q);p++;q-;} for(i=0;i8;i++)printf("%d,"a[i]); } 程序运行后的输出结果是 ______。
A. 823,4,5,6,7,1,
B. 5,6,7,8,12,3,4,
C. 1,2,3,4,5,6,7,8,
D. 8,7,6,5,4,3,2,1,
[单选题]以下程序中函数sort的功能是对a所指数组中的数据进行由大到小的排序 void sort(int a[],int n) { int i,j,t; for(i=0;in-1;i++) for(j=i+1;jn;j++) if(a[i]a[j]) {t=a[i];a[i]=a[j];a[j]=t;} } main() { int aa[10]={1,2,3,4,5,6,7,8,9,10},i; sort(&aa[3],5); for(i=0;i10;i++)printf(“%d”,aa [i]); pfintf(“\n”); } 程序运行后的输出结果是
A. 1,2,3,4,5,6,7,8,9,10
B. 10,9,8:7,6,5,4,3,2,1
C. 1,2,3,8,7,6,5,4,9,10
D. 1,2,10,9,8,7,6,5,4,3
[单选题]有以下程序: main() { int m=3,n=4,x; x;-m++; x=x+8/++n; printf("%d\n",x); } 程序运行后的输出结果是( )。
A. 3
B. 5
C. -1
D. -2
[单选题]下表正确的是( )。 在父类中的访问属性访问修饰符(modify symbol)在子类中的访问属性
A. publiCprivate 不能直接访问
B. protect publiC public
C. private publiC不能直接访问
D. protectprivate protect
[单选题]下列函数的运行结果是()。includeint add(int a,int b);void main(){extem int x,y;
下列函数的运行结果是( )。 #includeiostream.h> int add(int a,int b); void main() { extem int x,y; coutadd(x,y)endl; } int x(20),y(5); int add(int a,int b) { int s=a+b; return s; )
A. 25
B. 30
C. 20
D. 15
[单选题]执行语句s=Len(Mid("Visual Basic",1,6))后,s的值是
A. Visual
B. Basic
C. 6
D. 11
[单选题]有以下程序: # include iostream> int i=0; void fun() {{static iht i=1; std::couti++','; } std:: couti','; } int main() { fun(); fun(); return 0; }程序执行后的输出结果是______。
A. 1,2,2,3,
B. 2,0,3,0,
C. 1,0,2,0,
本文链接:https://www.51ksbd.net/show/9geyk3.html