题目内容

在事务处理阶段,数据处理的方式主要是:

A. 批处理
B. 联机实时处理
C. 分布式处理
D. 人工智能化处理

查看答案
更多问题

有以下程序片段:int a[5]={10,20,30,40,50},*p=a;(*p)++;printf("%d,%d\n",a[0],p[0]); 执行后,输出结果为()。

A. 11,10
B. 10,11
C. 10,10
D. 11,11

有以下程序片段:int a[5]={10,20,30,40,50},*p=a;*p++;printf("%d,%d\n",a[0],p[0]); 执行后,输出结果为()。

A. 11,20
B. 10,20
C. 10,11
D. 11,11

有以下程序片段:int a[5]={10,20,30,40,50},*p=a;++p;printf("%d,%d\n",*a,*p); 执行后,输出结果为()。

A. 11,20
B. 10,20
C. 10,11
D. 11,11

有以下程序片段:int a[5]={10,20,30,40,50},*p=a;++p;printf("%d,%d\n",*(a+1),*p); 执行后,输出结果为()。

A. 20,20
B. 11,20
C. 11,11
D. 20,11

答案查题题库