
【名词&注释】
高速缓存(cache)、程序代码(program code)、物理地址(physical address)、动态分配(dynamic allocation)、完整性控制(integrity control)、数据链路层(data link layer)、空间局部性(space locality)、链路层协议(link layer protocol)、生产者消费者(producer-consumer)、要注意(should be noticed)
[单选题]程序趋向于重用它当前正在使用的指令和数据。这个广泛适用的经验规则称为
A. 全局性原
B. 时间性原理
C. 局部性原理
D. 空间性原理
查看答案&解析
点击获取本科目所有试题
举一反三:
[单选题]程序局部性原理分为空间局部性(space locality)和时间局部性,空间局部性(space locality)是指
A. 程序代码的顺序性
B. 程序中存在大量的循环
C. 程序采用了模块化结构
D. 物理地址重叠映射到了逻辑地址
[单选题]从用户角度看,建立多级树形目录的主要目标是
A. 解决文件重名问题
B. 扩充了目录的容量
C. 简化了文件管理
D. 实现了文件保护
[单选题]在X.25网络中,______是网络层协议。
A. LAP-B
B. X.21
C. X.25PLP
D. MHS
[多选题]下列关于SRAM的叙述,正确的是
A. SRAM是一种随机存储器
B. SRAM是一种易失性存储器,断电则丢失存储信息
C. SRAM需要刷新操作,不定时刷新,数据会丢失
D. SRAM速度快,通常用来制作高速缓存
E. SRAM芯片与CPU连接时要注意(should be noticed)时序匹配
[单选题]在Cisco路由器上建立一个名为zw246的DHCP地址池,地址池的IP地址是176.115.246.0/24,其中不用于动态分配的地址有176.115.246.2~176.115.246.10,缺省网关为176.115.246.1,域名为tj.edu.cn,域名服务器地址为176.115.129.26,地址租用时间设定为6小时30分钟。下列DHCP地址池的配置,正确的是A)Router (config)#ip dhcp pool zw246
A. Router (dhcp-config)ip dhcp excluded-address 176.115.246.2 176.115.246.10
B. Router (dhcp-config)network 176.115.246.0 255.255.255.0
C. Router (dhcp-config)default-router 176.115.246.1
D. Router (dhcp-config)domain-name tj.edu.cn
E. Router (dhcp-config)dns-server address 176.115.129.26
F. Router (dhcp-config)lease 0 6 30
G. B)Router (config)ip dhcp excluded-address 176.115.246.2-10
H. Router (config)ip dhcp pool zw246
I. Router (dhcp-config)network 176.115.246.0 255.255.255.0
J. Router (dhcp-config)default-router 176.115.246.1
K. Router (dhcp-config)domain-name tj.edu.cn
L. Router (dhcp-config)dns-server address 176.115.129.26
M. Router (dhcp-config)lease 0 6 30
N. C)Router (config)ip dhcp excluded-address 176.115.246.2 176.115.246.10
O. Router (config)ip dhcp pool zw246
P. Router (dhcp-config)network 176.115.246.0 255.255.255.0
Q. Router (dhcp-config)default-router 176.115.246.1
R. Router (dhcp-config)domain-name tj.edu.cn
S. Router (dhcp-config)dns-server address 176.115.129.26
T. Router (dhcp-config)lease 0 6 30
U. D)Router (config)ip dhcp excluded-address 176.115.246.2 176.115.246.10
V. Router (config)ip dhcp pool zw246
W. Router (dhcp-config)network 176.115.246.0 255.255.255.0
X. Router (dhcp-config)default-router 176.115.246.1
Y. Router (dhcp-config)domain-name tj.edu.cn
Z. Router (dhcp-config)dns-server address 176.115.129.26
[单选题]灰盒测试不同于白盒测试的地方是______。
A. 灰盒测试以可获得的系统结构信息为基础进行测试
B. 灰盒测试是黑盒测试的一种类型
C. 灰盒测试基本不涉及程序中所采用的数据结构
D. 灰盒测试基本不涉及程序中所采用的算法
[单选题]DBMS的完整性控制应具有哪些功能?——一①定义和存储完整性功能
A. ②检查完整性功能
B. ③控制完整性功能
C. ①②
D. ②③
E. ①③
F. 全部
[多选题]在有N个缓冲区的生产者消费者(producer-consumer)的问题中,下列叙述中哪些是错误的?producer() { int item; while(TRUE) { item = produce_item(); P(empty); P(mutex); insert_item(item); V(mutex) V(full); } } consumer() { int item; while(TRUE) { P(full); P(mutex); item = remove_item(); V(mutex); V(mutex); consume_item(item); } }
A. 信号量empty的初值为N
B. 信号量full的初值为0
C. 信号量mutex的初值为0
D. P(full)和P(mutex)两条语句可以颠倒顺序
E. V(mutex)和V(mutex)两条语句可以颠倒顺序
[单选题]一个好的程序实现是要考虑各种可能出错的条件,并进行适当的出错处理,即预设各种出错处理的______。
A. 现象
B. 策略
C. 通路
D. 场景
本文链接:https://www.zhukaozhuanjia.com/download/pkpe9z.html