信管网每日一练
软件设计师 - 每日一练 导航

软件设计师每日一练试题(2022/9/22)

2022年09月23日来源:信管网 作者:cnitpm

软件设计师当天每日一练试题地址:www.cnitpm.com/exam/ExamDay.aspx?t1=4

往期软件设计师每日一练试题汇总:www.cnitpm.com/class/27/e4_1.html

软件设计师每日一练试题(2022/9/22)在线测试:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2022/9/22

点击查看:更多软件设计师习题与指导

软件设计师每日一练试题内容(2022/9/22)

  • 试题1

    面向对象(  )选择合适的面向对象程序设计语言,将程序组织为相互协作的对象集合,每个对象表示某个类的实例,类通过继承等关系进行组织。
    A.分析
    B.设计
    C.程序设计
    D.测试

    查看答案

    试题参考答案:C

    试题解析与讨论:www.cnitpm.com/st/2548923821.html

  • 试题2

    One is that of a software engineer and the other is a DevOps engineer. The biggest different is in their (1). Software engineers focus on how well the computer software fts the needs of the client while a DevOps engineer has a broader focus that includes software development, how the software is deployed and providing (2) support through the cloud while the software is continually (3).
    A software engineer creates computer programs for people to use based upon their security and function ality needs. A DevOps engineer also works on computer applications, but manages the building, deployment and operation as a(4) autormated process. Software engineers often work separately from the operations side of a business. They create the software a business client needs and then monitor the performance of their software products to determine if up grades are necessary or if more serious improvements are needed. DevOps engineers work with the operational side of a business and manage the workflow to (5) software tosmoothly function with automated processes. Both professions require knowledge of Computer programming languages.
    (1)A、focus
    B、process
    C、goal
    D、function
    (2)A、developing
    B、deploying
    C、training
    D、operational
    (3)A、developed
    B、functional
    C、constructed
    D、secure
    (4)A、single
    B、whole
    C、continuous
    D、independent
    (5)A、develop
    B、integrate
    C、analyse
    D、maintain

    查看答案

    试题参考答案:C、D、C、B、B

    试题解析与讨论:www.cnitpm.com/st/459548145.html

  • 试题3

    用哈希表存储元素时,需要进行冲突(碰撞)处理,冲突是指()。
    A.关键字被依次映射到地址编号连续的存储位置
    B.关键字不同的元素被映射到相同的存储位置
    C.关键字相同的元素被映射到不同的存储位置
    D.关键字被映射到哈希表之外的位置

    查看答案

    试题参考答案:B

    试题解析与讨论:www.cnitpm.com/st/3962224560.html

  • 试题4

    通用的高级程序设计语言一般都会提供描述数据、运算、控制和数据传输的语言成分,其中,控制包括顺序、( )和循环结构。
    A、选择
    B、递归
    C、递推
    D、函数

    查看答案

    试题参考答案:A

    试题解析与讨论:www.cnitpm.com/st/4167022568.html

  • 试题5

    在屏蔽软件错误的容错系统中,冗余附加技术的构成不包括()。
    A.关键程序和数据的冗余存储及调用
    B.冗余备份程序的存储及调用
    C.实现错误检测和错误恢复的程序
    D.实现容错软件所需的固化程序

    查看答案

    试题参考答案:A

    试题解析与讨论:www.cnitpm.com/st/2482329204.html

  • 试题6

    TCP/IP 在多个层引入了安全机制,其中 TLS 协议位于  ( )  。
    A、数据链路层
    B、网络层
    C、传输层
    D、应用层

    查看答案

    试题参考答案:C

    试题解析与讨论:www.cnitpm.com/st/81002789.html

  • 试题7

    下图用白盒测试方法进行测试,图中有(  )条路径采用McCabe度量计算该程序图的环路复杂性为(  )

    (1)A、3
    B、4
    C、5
    D、6
    (2)A、3
    B、4
    C、5
    D、6

    查看答案

    试题参考答案:B、B

    试题解析与讨论:www.cnitpm.com/st/417469122.html

  • 试题8

    设某语言的语法规则用上下文无关文法 G=(N,T,P,S)表示,其中 N 是非终结符号的集合,T是终结符号的集合,P 是产生式集合,S 是开始符号,令 V=N∪T,那么符合该语言的句子是( ) 。
    A、从 S 出发推导的、仅包含 T 中符号的符号串
    B、从 N 中符号出发推导的、仅包含 T 中符号的符号串
    C、从 S 出发推导的、包含 V 中符号的符号串
    D、从 N 中符号出发推导的、包含 V 中符号的符号串

    查看答案

    试题参考答案:A

    试题解析与讨论:www.cnitpm.com/st/81892820.html

  • 试题9

    Prim算法和Kruscal算法都是无向连通网的最小生成树的算法,Prim算法从一个顶点开始,每次从剩余的顶点中加入一个顶点,该顶点与当前的生成树中的顶点的连边权重最小,直到得到一颗最小生成树;Kruscal算法从权重最小的边开始,每次从不在当前的生成树顶点中选择权重最小的边加入,直到得到一颗最小生成树,这两个算法都采用了(64)设计策略,且(65)。
    (64)
    A.分治
    B.贪心
    C.动态规划
    D.回溯
    (65)
    A.若网较稠密,则Prim算法更好
    B.两个算法得到的最小生成树是一样的
    C.Prim算法比Kruscal算法效率更高
    D.Kruscal算法比Prim算法效率更高

    查看答案

    试题参考答案:B、A

    试题解析与讨论:www.cnitpm.com/st/380717144.html

  • 试题10

    双端队列是指在队列的两个端口都可以加入和删除元素,如下图所示。现在要求元素进队列和出队列必须在同一端口,即从A端进队的元素必须从A端出、从B端进队的元素必须从B端出,则对于4个元素的序列a、b、c、d,若要求前2个元素(a、b)从A端口按次序全部进入队列,后两个元素(c、d)从B端口按次序全部进入队列,则不可能得到的出队序列是( )。

    A、d、a、b、c
    B、d、c、b、a
    C、b、a、d、c
    D、b、d、c、a

    查看答案

    试题参考答案:A

    试题解析与讨论:www.cnitpm.com/st/417041118.html

温馨提示:因考试政策、内容不断变化与调整,信管网提供的以上信息仅供参考,如有异议,请考生以权威部门公布的内容为准!

分享至:

信管网 - 信息系统项目管理专业网站

下载APP-在线学习

培训课程

0元畅享

考试题库

免费资料

客服咨询