计算机类
公务员类
工程类
语言类
金融会计类
计算机类
医学类
研究生类
专业技术资格
职业技能资格
学历类
党建思政类
计算机软件水平考试
全国计算机应用水平考试(NIT)
计算机软件水平考试
计算机等级考试(NCRE)
全国高校计算机等级考试CCT
行业认证
信息素养
数据库系统工程师(中级)
信息系统项目管理师(高级)
系统分析师(高级)
系统架构设计师(高级)
网络规划设计师(高级)
系统规划与管理师(高级)
软件评测师(中级)
软件设计师(中级)
网络工程师(中级)
多媒体应用设计师(中级)
嵌入式系统设计师(中级)
电子商务设计师(中级)
系统集成项目管理工程师(中级)
信息系统监理师(中级)
信息安全工程师(中级)
数据库系统工程师(中级)
信息系统管理工程师(中级)
软件过程能力评估师(中级)
计算机辅助设计师(中级)
计算机硬件工程师(中级)
信息技术支持工程师(中级)
程序员(初级)
网络管理员(初级)
信息处理技术员(初级)
电子商务技术员(初级)
信息系统运行管理员(初级)
网页制作员(初级)
多媒体应用制作技术员(初级)
PMP项目管理员资格认证
在一个数据库中,如果要赋予用户userA可以查询department表的权限,应使用语句( )。
进入题库练习
流水线的吞吐率是指单位时间流水线处理的任务数,如果各段流水的操作时间不同,则流水线的吞吐率是( )的倒数。
进入题库练习
数据仓库通常采用三层体系结构,中间层为( )。
进入题库练习
对关系R(A,B,C,D)和关系S,(A,C,D,E,F)进行自然连接运算后的属性列应为6个,即为以R.A,R.B,R.C,R.D,S.E,S.F。给定关系模式R ,其中属性集U={A,B,C,D,E,G ,H} 函数依赖集F= {A→B,AE→H,BG→DC,E→C,H→E } ,下列函数依赖不成立的是( )。
进入题库练习
算术表达式采用逆波兰式表示时不用括号,可以利用( )进行求值。与逆波兰式ab-cd+*对应的中缀表达式是( )。
进入题库练习
__71__is a software package designed to store,retrieve,query and manage data User interfaces (Uls) allows data to be created,read,updated and deleted by authorized entities.The system users include database administrators (DBAs)application programmers and end usersMost of the time,__72__are the only ones to directly interact with a system. They use __73__to deal with database schemas and descriptions,of how the data should reside in the database.Thev use__74__to deal with data manipulation which includes most common SQL statementssuch as SELECTINSERTUPDATE,DELETE,etc..They also focus on managing andmaintaining the__75__of the database system:prevent unauthorized access to the data.
进入题库练习
Corporate decision makers require access to information from multiplesuch sources.Seting up queries on individual sources is both cumbersome and ___71___.Moreover,the sources of data may store only current data,whereas decision makers may need access to ___72___ dataas well.A data warehouse is a repository (or archive)of information gathered from multiple sources,stored under a unified schema,at a ___73___site.Oncegathered,the data are stored for a long time,permitting access to historical data.Thus,data warehouses provide the user with a single consolidated___74___to data,making decision-support queries easier to write.Moreover,by accessing information fordecision support from a data warehouse,the decision maker ensures that online transaction-processing systems are not___75___by the decision-supportworkdoad.
进入题库练习
计算机在处理算数表达式78+21*(36-34)时,先将其转换成“__5__”的后缀形式表示,然后利用__6__进行计算。
进入题库练习
设有一个具有头结点的单链表,指针h指向其头结点,则当__6__时该单链表为空;如果该单链表非空,且指针p指向链尾,那么__7__。
进入题库练习
某学生想要设计一个博客系统,在数据库的概念设计阶段提出了如下图所示的E-R模型,其中的联系类型为______,联系的属性为______。
进入题库练习
( )是构成我国保护计算机软件著作权的两个基本法律文件。单个自然人的软件著作权保护期为( )。
进入题库练习
在进行进度安排时,PERT图不能清晰地描述( ),但可以给出哪些任务完成后才能开始另一些任务。某项目X包含任务A、B、……、J,其PERT如下图所示(A=l表示任务A的持续时间是1天),则项目X的关键路径是( \)。
进入题库练习
假设某硬盘由5个盘片构成(共有8个记录面),盘面有效记录区域的外直径为30cm,内直径为10cm,记录位密度为250位/mm,磁道密度为16道/mm,每磁道分16个扇区, 每扇区512字节,则该硬盘的格式化容量约为()MB。
进入题库练习
Ravi, like many project ( ) , had studied the waterfall model of software development as the primary software life-cycle ( ) . He was all set to use it for an upcoming project, his first assignment. However, Ravi found that the waterfall model could not be used because the customer wanted the software delivered in stages, something that implied that the system had to be delivered and built in ( ) and not as ( ) 。The situation in many other projects is not very different. The real world rarely presents a problem in which a standard process, or the process used in a previous project, is the best choice. To be the most suitable, an existing process must be ( ) to the new problem.A development process, even after tailoring, generally cannot handle change requests. To accommodate change requests without losing control of the project, you must supplement the development process with a requirement change management process.
进入题库练习
与等价的逻辑表达式是() 。(⊕表示逻辑异或,+表示逻辑加)
进入题库练习
给定关系模式SP_P (供应商号,项目号,零件号,数量),查询至少给3 个(包含3个)不同项目供应了零件的供应商,要求输出供应商号和供应零件数量的总和,并按供应商号降序排列。SELECT 供应商号, SUM (数量) FROMSP _P( )
进入题库练习
在进行进度安排时,PERT图不能清晰地描述(\ ),但可以给出哪些任务完成后才能开始另一些任务。某项目X包含任务A、B、……、J,其PERT如下图所示(A=l表示任务A的持续时间是1天),则项目X的关键路径是( )。
进入题库练习
关系R.S如下表所示,元组演算表达式T={t|R(t)⋀∀u(S(u)→t[3]>u[1]}运算的结果为( )。
进入题库练习
设系统中有R类资源m个,现有n个进程互斥使用。若每个进程对R资源的最大需求为w,那么当m、n、w取下表的值时,对于下表中的a~e五种情况,20两种情况可能会发生死锁。对于这两种情况,若将21,则不会发生死锁。
进入题库练习
设有关系R(E,F,G)和S(F,G,HK),关系代数表达__36__可正确计算:如果进行运算R-S,其结果集包含属性__37__。
进入题库练习