logo - 刷刷题
下载APP
【单选题】

(23)处应填()。

A.2
B.3
C.4
D.5

A.
在某计算机中,假设某程序的6个页面如下图所示,其中某指令“COPY A TOB”跨两个页面,且源地址A和目标地址B所涉及的区域也跨两个页面。若地址为A和B的操作数均不在内存,计算机执行该COPY指令时,系统将产生 (22) 次缺页中断;若系统产生3次缺页中断,那么该程序应有 (23) 个页面在内存。
B.
举报
参考答案:
参考解析:
.
刷刷题刷刷变学霸
举一反三

【单选题】(72)处应填()。 A.collaboration diagram B.sequence diagram C.use-case diagram D.activity diagram

A.
Object-oriented analysis (OOA) is a semiformal specification technique for the object-oriented paradigm. Object-oriented analysis consists of three steps. The first step is (71) . It determines how the various results are computed by the product and presents this information in the form of a (72) . and associated scenarios. The second is (73) , which determines the classes and their attributes; Then determine the interrelationships and interaction among the classes. The last step is (74) , which determines the actions performed by or to each class or subclass and presents this information in the form of (75) .

【单选题】(39)处应填()。 A.NOT NULL B.UNIQUE C.KEY UNIQUE D.PRIMARY KEY

A.
某公司的部门(部门号,部门名,负责人,电话)、商品(商品号,商品名称,单价,库存量)和职工(职工号,姓名,住址)三个实体对应的关系如表1、表2和表3所示。
B.
假设每个部门有一位负责人,一个负责人只有一部电话,但有若干名员工;每种商品只能由一个部门负责销售。
C.
D.
①部门关系不属于第三范式的原因是 (36) 。如果用户要求得到表4所示的结果,需要 (37) ,并增加关系模式 (38)
E.
②若部门名是唯一的,请将下述部门SQL语句的空缺部分补充完整。
F.
CREATE TABLE 部门 (部门号 CHAR(3) PRIMARY KEY,
G.
部门名CHAR(10) (39)
H.
负责人CHAR(4),
I.
电话CHAR(20))
J.
(40) );
.
③查询各部门负责人的姓名及住址的SQL语句如下:
K.
SELECT 部门名,姓名,住址
L.
FROM 部门,职工 (41)