计算机类
公务员类
工程类
语言类
金融会计类
计算机类
医学类
研究生类
专业技术资格
职业技能资格
学历类
党建思政类
计算机软件水平考试
全国计算机应用水平考试(NIT)
计算机软件水平考试
计算机等级考试(NCRE)
全国高校计算机等级考试CCT
行业认证
信息素养
软件设计师(中级)
信息系统项目管理师(高级)
系统分析师(高级)
系统架构设计师(高级)
网络规划设计师(高级)
系统规划与管理师(高级)
软件评测师(中级)
软件设计师(中级)
网络工程师(中级)
多媒体应用设计师(中级)
嵌入式系统设计师(中级)
电子商务设计师(中级)
系统集成项目管理工程师(中级)
信息系统监理师(中级)
信息安全工程师(中级)
数据库系统工程师(中级)
信息系统管理工程师(中级)
软件过程能力评估师(中级)
计算机辅助设计师(中级)
计算机硬件工程师(中级)
信息技术支持工程师(中级)
程序员(初级)
网络管理员(初级)
信息处理技术员(初级)
电子商务技术员(初级)
信息系统运行管理员(初级)
网页制作员(初级)
多媒体应用制作技术员(初级)
PMP项目管理员资格认证
单选题A typical (11) language contains an applicative sub-language which approximates the mathematical abstractions of "timeless" functions applied to "spaceless' values, where the actual operation sequences and use of storage space during expression evaluation are organized behind the (12) . In this setting, values are data structures of low volume, typically a few computer words or less, which means that an illusion of spacelessness can be realized by having (13) results during expression evaluation stored at the discretion of the language implementation, and effecting parameter (14) and (15) operations through value copying.
进入题库练习
单选题给定C语言程序如下: int foo(int x,int y,int d) if(x!=0) if(y==0)d=d/x; else d=d/(x*y); else if(y==0)d=0; else d=d/y; return d; 当用路径覆盖法进行测试时,至少需要设计______个测试用例。 A.3 B.4 C.5 D.8
进入题库练习
单选题The purpose of the requirements definition phase is to produce a clear, complete, consistent, and testable (46) of the technical requirements for the software product. During the requirements definition phase, the requirements definition team uses an iterative process to expand a broad statement of the system requirements into a complete and detailed specification of each function that the software must perform and each (47) that it must meet. The starting point is usually a set of high-level requirements from the (48) that describe the project or problem. In either case, the requirements definition team formulates an overall concept for the system and then defines (49) showing how the system will be operated, publishes the system and operations concept document, and conducts a system concept review (SCR). Following the SCR, the team derives (50) requirements for the system from the high-level requirements and the system and operations concept. Using structured or object-oriented analysis the team specifies the software functions and algorithms needed to satisfy each detailed requirement.
进入题库练习
单选题对于以下编号为①、②、③的正规式,正确的说法是______。 ①(aa*|ab)*b ②(a|b)*b ③[(a|b)*|aa]*b
进入题库练习
单选题关于编译程序进行词法分析的说法中,不正确的是______。
进入题库练习
单选题在UML图中,一张交互图显示一个交互,由一组对象及其之间的关系组成,包含它们之间可能传递的消息。______不是交互图。
进入题库练习
单选题下列关于一个类的静态成员的描述中,不正确的是 (5) 。
进入题库练习
单选题若循环队列以数组Q[O..m-1]作为其存储结构,变量rear表示循环队列中队尾元素的实际位置,其移动按rear=(rear+1) mod m进行,变量length表示当前循环队列中的元素个数,则循环队列的队首元素的实际位置是 (2) 。 A.rear-length B.(rear-length+m) mod m C.(1+rear+m-length) mod m D.m-length
进入题库练习
单选题软件能力成熟度模型(CMM)的第4级(已定量管理级)的核心是______。
进入题库练习
单选题Traditional structured analysis techniques focus upon the flow of (36) within a system. Object-oriented analysis emphasizes the building of real-world models. It examines requirements from the perspective of the classes and objects found in the vocabulary of the (37) domain. Traditional system design method emphasizes the proper and effective structure of a complex system. Object-oriented design method encompasses the process of object-oriented decomposition and a (38) for depicting both logical and physical as well as static and dynamic models of the system under design. Object-oriented programming is a method of implementation in which programs are organized as cooperative collections of objects, each of which represents an (39) of some class, and whose classes are all members of a hierarchy of classes united via (40) relationships.
进入题库练习
单选题声音的三要素为音调、音强和音色,其中音色是由混入基音的 (10) 决定的。 若对声音以22.05kHz的采样频率、8位采样深度进行采样,则10分钟双声道立体声的存储量为 (11) 字节。
进入题库练习
单选题无向图中一个顶点的度是指图中 (32) 。
进入题库练习
单选题为保证用户在网络上边下载边观看视频信息,需要采用______ 技术。 A.流媒体 B.数据库 C.数据采集 D.超连接
进入题库练习
单选题给定一个有n个元素的有序线性表。若采用顺序存储结构,则在等概率前提下,删除其中的一个元素平均需要移动______个元素。
进入题库练习
单选题______ 标准中定义了MP3音乐标准。
进入题库练习
单选题在YUV彩色空间中对YUV分量进行数字化,对应的数字化位数通常采用Y:U:V=______。 A.8:4:2 B.8:4:4 C.8:8:4 D.4:8:8
进入题库练习
单选题集合A=d,b,c上的二元关系R为:R=<a,a>,<c,c>,<a,b>,则二元关系R是______。 A.自反的 B.反自反的 C.对称的 D.传递的
进入题库练习
单选题将一个无序序列中的元素依次插入到一棵______,并进行中序遍历,可得到一个有序序列。 A.完全二叉树 B.最小生成树 C.二叉排序树D.最优二叉树
进入题库练习
单选题软件的易维护性是指理解、改正、改进软件的难易度。通常影响软件易维护性的因素有易理解性、易修改性和 (86) 。在软件的开发过程中往往采取各种措施来提高软件的易维护性,如采用 (87) 有助于提高软件的易理解性, (88) 有助于提高软件的易修改性。 在软件质量特性中, (89) 是指在规定的一段时间和条件下,与软件维持其性能水平的能力有关的一组属性: (90) 是指防止对程序及数据的非授权访问的能力。
进入题库练习
单选题要在网络上发布彩色动画文件,可以采用的存储格式是______。 A.BMP B.JPEG C.MP3 D.GIF
进入题库练习