填空题

数据库系统的主要特点为数据集成性、数据的高______和低冗余性、数据独立性和数据统一管理和控制。

【参考答案】

共享性
<上一题 目录 下一题>
热门 试题

单项选择题
下列程序的运行结果为( )。 #include<stdio.h> void abc(char*str) int a,b,i,j; for(i=j=0;str[i]!=’ 0’;i++) if(str[i]!=’a’ str[j++]=str[i]; str[j]=’ 0’; void main() char str[]= abcdef ; abc(str); printf( str[]=%s ,str);
A.str[]=bcdef
B.str[]=abcdef
C.str[]=a
D.str[]=ab
单项选择题
下列程序的输出结果是( )。 #include<stdio.h> main() int a=2,b=3,p; p=f(a,b); printf( %d ,p); int f(a,b) int c; if(a>b)c=1; else if(a==b)c=0; else c=-1; return(c);
A.-1
B.0
C.1
D.2
相关试题
  • 下列程序中的数组a包括10个整数元素,分...
  • 语句“int(*ptr)();”的含义是___...
  • 下列程序段的运行结果是______。 ch...
  • 下列程序的输出结果是______。 #in...
  • ’ 13’在内存中占1个字节, 12 在...