单项选择题

在数据库系统中,数据库用户能够看见和使用的局部数据的逻辑结构和特征的描述是( )。

A.外模式
B.逻辑模式
C.概念模式
D.物理模式
<上一题 目录 下一题>
热门 试题

单项选择题
对下述程序的判断中,正确的是( )。 #include<stdio.h> void main() {char *P,s[256]; p=s; while(strcmp(s, the end )) {printf( Input the string: ); gets(s); while(*P) putchar(*p++);}}
A.此程序循环接收字符串并输出,直到接收到字符串“the end”为止
B.此程序循环接收字符串,接收到字符串“the end”则输出,否则程序终止
C.此程序循环接收字符串并输出,直到接收字符串“the end”为止,但因为代码有错误,程序不能正常工作
D.此程序循环接收字符串并将其连接在一起,直到接收字符串“the end”为止,输出连接在一起的字符串
单项选择题
执行以下程序段的输出结果是( )。 int m=0x12,n=0x12; m=m-n; printf( %X n ,m);
A.0X0
B.0X12
C.0x0
D.0
相关试题
  • 有以下程序: #include<string.h> in...
  • 若运行以下程序时,从键盘输入ADescriptor...
  • 有以下程序: #include<string.h> vo...
  • 下面程序段的运行结果是( )。 #includ...
  • 下述程序的输出结果是( )。 #include...