Bill Gates and Walt Disney are two people the magazine has ______ to be the Greatest American.
A. appointed
B. appeased
C. nicknamed
D. nominated
查看答案
什么是存储器的内零头和外零头它们是怎么造成的减少它们应采取什么措施
试述分页存储管理的基本实现原理,并说明如何实现从逻辑空间到物理空间的变换
有一个程序要把100×100的数组置初值“0”,现假定有两个主存块可用来存放数组中的元素,每个主存块可以存放200个数组元素,数组中的元素按行编址。两个主存块的初始状态都为空,若程序编制如下: (1)Var A:array[1..100] of array[1..100] of integer; for j:=1 to 100 do for i=1 to 100 do A[i,j]:=0 (2)Var A:array[1..100] of array[1..100] of integer; for i:=1 to 100 d0 for j:=1 to 100 do A[i,j]:=0 当采用LRU页面调度算法时,对上述两种程序编制方法各会产生多少次缺页中断