首页 > 软考
题目内容 (请给出正确答案)
[主观题]

A location where data can be temporarily Stored.A.AreaB.DiskC.BufferD.File

A location where data can be temporarily Stored.

A.Area

B.Disk

C.Buffer

D.File

查看答案
答案
收藏
如果结果不匹配,请 联系老师 获取答案
您可能会需要:
您的账号:,可能还需要:
您的账号:
发送账号密码至手机
发送
安装优题宝APP,拍照搜题省时又省心!
更多“A location where data can be t…”相关的问题
第1题
A location where data can betemporarily stored.A.AreaB.DiskC.BufferD.File

A location where data can betemporarily stored.

A.Area

B.Disk

C.Buffer

D.File

点击查看答案
第2题
Information is no good to you if you can’t(72)it . The location dimension of information m
eans having access to information no matter where you are.

A.access

B.make

C.learn

D.bring

点击查看答案
第3题
Which of the following are prerequisites for the system to check the minimum shelf life in the goods receipt for a purchase order? There are 3 correct answers to this question.()
A.The shelf life expiration date check is activated for the plant

B.The shelf life expiration date check is activated for the movement type

C.The storage location where the material is received is warehouse-managed

D.The remaining shelf life is maintained in the purchase order

E.The material is managed in batches

点击查看答案
第4题
An administrator needs to recover disk space on a previously-used thin provisioned vir
An administrator needs to recover disk space on a previously-used thin provisioned virtual disk.The volumes where the administrator needs to recover the disk blocks are on VAAI-compliant storage arrays. Which two actions should the administrator take accomplish this task? ()

A.Issue the vmkfstools -vmfs unmap command within the VMFS volume directory on the ESXihost console

B.Use VMware Converter to migrate the virtual machine to a new datastore. This will recreate the volumes and recover all unused space

C.Perform. a Storage vMotion to another volume in order to force free space recovery to occur.This recreates the volume in a new location and recovers all unused space

D.Execute the esxcli storage vmfs unmap command

点击查看答案
第5题
● 试题(66)~(70)给出了计算机英文术语的解释,请从供选择的参考答案中 选择正确的术语。(66) : An

● 试题(66)~(70)给出了计算机英文术语的解释,请从供选择的参考答案中

选择正确的术语。

(66) : An error can be caused by attempting to divide by 0.

(66)

A. Interrupt

B. Default

C. Underflow

D. Overflow

(67) : The process of identifying and correcting errors in a program.

(67)

A. Debug

B. Bug

C. Fault

D. Default

(68) : A collection of related information, organized for easy retrieval.

(68)

A. Data

. Database

C. Buffer

. Stack

(69) : A location where data can be temporarily stored.

(69)

A. Area

B. Disk

C. Buffer

D. File

(70 ) : A graphical bar with buttons that perform some of the most common commands.

(70)

A. Title bar

B. Tool bar

C. Status bar

D. Scroll bar

点击查看答案
第6题
阅读下列说明,回答问题 1 至问题 5 ,将解答填入答题纸的对应栏内。 【说明】 某公司要对其投放的
自动售货机建立商品管理系统,其数据库的部分关系模式如下: 售货机: VEM(VEMno, Location) ,各属性分别表示售货机编号、部署地点; 商品: GOODS(Gno, Brand, Price) ,各属性分别表示商品编号、品牌名和价格; 销售单: SALES(Sno, VEMno,Gno,SDate,STime),各属性分别表示销售号、售货机编号、商品编号、日期和时间。 缺货单: OOS(VEMno,Gno,SDate,STime ),各属性分别表示售货机编号、商品编号、 日期和时间。 相关关系模式的属性及说明如下: (1)售货机摆放固定种类的商品,售货机内每种商品最多可以储存10 件。管理员在每天结束的时候将售货机中所有售出商品补全 (2)每售出一件商品,就自动向销售单中添加一条销售记录。如果一天内某个售货机上某种商品的销售记录达到10 条,则表明该售货机上该商品已售完,需要通知系统立即补货,通过自动向缺货单中添加一条缺货记录来实现。 根据以上描述,回答下列问题,将 SQL 语句的空缺部分补充完整。

【问题 1】 (3 分) 请将下面创建销售单表的 SQL 语句补充完整,要求指定关系的主码和外码约束。 CREATE TABLE SALES(Sno CHAR(8) (a) VEMno CHAR(5) (b) Gno CHAR(8) (c) SDate DATE, STime TIME); 【问题 2】 (4分) 创建销售记录详单视图 SALES_Detail ,要求按日期统计每个售货机上各种商品的销售数量,属性有 VEMno、Location 、Gno、Brand 、Price 、amount 和 SDate。为方便实现,首先建立一个视图 SALES_Total ,然后利用SALES_Total 完成视图 SALES_Detail 的定义。 CREATE VIEW SALES _Total(VEMno,Gno,SDate,amount) AS SELECT VENno ,Gno ,SDate ,count(*) FROM SALES GROUP BY (d); CREATE VIWE (e) AS SELECT VEM.VEMno,Location ,GOODS.Gno ,Brand,Price,amount,SDate FROM VEM,GOODS,SALES_Total WHERE (f) AND (g) 【问题 3】 (3分) 每售出一件商品,就自动向销售单中添加一条销售记录。如果一天内某个售货机上某种商品的销售记录达到 10 条,则自动向缺货单中添加一条缺货记录。需要用触发器来实现缺货单的自动维护。程序中的 GetTime()获取当前时间。 CREAT(h) OOS_TRG AFTER (i) ON SALES REFERENCING new row AS nrow FOR EACH ROW BEGIN INSERT INTO OOS SELECT SALES .VENno, (j) GetTime() FROMSALES WHERE SALES.VEMno = nrow.VEMno AND SALES.Gno = nrow.Gno AND SALES.SDate = nrow.SDate GROUP BY SALES.VEMno,SALES.Gno,SALES.SDate HAVING count(*)> 0 AND mod(count(*), 10)=0; END 【问题 4】 (3分) 查询当天销售最多的商品编号、品牌和数量。程序中的 GetDate()获取当天日期。 SELECT GOODS.Gno ,Brand, (k) FROM GOODS,SALES WHERE GOODS.Gno=SALES.GNO AND SDATE =GetDate() GROUP BY (1) HAVING(M) (SELECT count(*) FROM SALELS WHERE SDATE = GetDate() GROUP BY Gno); 【问题5】 (2分) 查询一件都没有售出的所有商品编号和品牌。 SELECT Gno ,Brand FROM GOODS WHERE GNO(N) SELECT DISTINCT GNO FROM(o);

点击查看答案
第7题
Word2010默认文件扩展名为()

A.doc

B.docx

C.dotx

D.dat

点击查看答案
第8题
《2010年通则》中D组术语包括()。

A.DDU

B.DDP

C.DAP

D.DAT

点击查看答案
第9题
视频文件格式不包括()。

A.MPEG

B.ROM

C.AVI

D.DAT

点击查看答案
退出 登录/注册
发送账号至手机
密码将被重置
获取验证码
发送
温馨提示
该问题答案仅针对搜题卡用户开放,请点击购买搜题卡。
马上购买搜题卡
我已购买搜题卡, 登录账号 继续查看答案
重置密码
确认修改