柠檬试题库
search
首页
计算机
公务员
驾照
关于
share
将数据库的结构划分成多个层次,是为了提高数据库的逻辑独立性和( )。
A.物理独立性
B.操作独立性
C.安全性
D.管理规范性
热度🔥327
参考答案:A
解析:
数据库系统通常采用三级模式结构并且提供两级映射功能,其中的外模式/模式映射保证了数据库系统具有较高的逻辑独立性,而模式/内模式映射保证了数据库系统具有较高的物理独立性,故本题答案为A。
复制题目向AI提问
content_copy
content_copy
扫码免费计算机二级刷题
2025年计算机等级考试题库
推荐
有以下程序 #include main() { int a = 7; while ( a-- ) ; printf ("%d\n", a); } 程序运行后的输出结果是
有以下程序 #include #include typedef struct stu { char name[10]; char gender; int score; } STU; void f(char *name, char gender, int score) { strcpy(name, "Qian"); gender = 'f'; score = 350; } main() { STU a={"Zhao", 'm', 290}, b; b=a; f(b.name,b.gender,b.score); printf("%s,%c,%d,", a.name, a.gender, a.score); printf("%s,%c,%d\n", b.name, b.gender, b.score); } 程序的运行结果是
下面描述中错误的是( )。
标签
计算机二级Office
数据库
模式
独立性
系统