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

软件设计师每日一练试题(2023/8/20)

2023年08月21日来源:信管网 作者:cnitpm

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

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

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

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

软件设计师每日一练试题内容(2023/8/20)

  • 试题1

    在进行子系统结构设计时,需要确定划分后的子系统模块结构,并画出模块结构图。该过程不需要考虑( )。
    A.每个子系统如何划分成多个模块
    B.每个子系统采用何种数据结构和核心算法
    C.如何确定子系统之间、模块之间传送的数据及其调用关系
    D.如何评价并改进模块结构的质量

    查看答案

    试题参考答案:B

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

  • 试题2

    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(1).  It  determines  how  the  various  results  are  computed  by  the  product  and  presents  this information in the form of a  (2)  and associated scenarios. The second is  (3)  , which determines the classes and their attributes, then determines the interrelationships and interaction among the classes. The  last step is  (4)  ,  which determines  the  actions  performed  by or to each class or subclass and presents this information in the form of  (5)  .
    (1)A、use-case modeling
    B、class modeling
    C、dynamic modeling
    D、behavioral modeling
    (2)A、collaboration diagram
    B、sequence diagram
    C、use-case diagram
    D、activity diagram
    (3)A、use-case modeling
    B、class modeling
    C、dynamic modeling
    D、behavioral modeling
    (4)A、use-case modeling
    B、class modeling
    C、dynamic modeling
    D、behavioral modeling
    (5)A、activity diagram
    B、component diagram
    C、sequence diagram
    D、state diagram

    查看答案

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

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

  • 试题3

    以下关于过程改进的叙述中,错误的是  ( )  。
    A、过程能力成熟度模型基于这样的理念:改进过程将改进产品,尤其是软件产品
    B、软件过程改进框架包括评估、计划、改进和监控4个部分
    C、软件过程改进不是一次性的,需要反复进行
    D、在评估后要把发现的问题转化为软件过程改进计划

    查看答案

    试题参考答案:B

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

  • 试题4

    三个可靠度R均为0.8的部件串联构成一个系统,如下图所示:

    则该系统的可靠度为( )。
    A、0.240
    B、0.512
    C、0.800
    D、0.992

    查看答案

    试题参考答案:B

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

  • 试题5

    用白盒测试方法对如下图所示的流程图进行测试。若要满足分支覆盖,则至少要()个测试用例,正确的测试用例对是()(测试用例的格式为(A,B,X;X))。

    A.1
    B.2
    C.3
    D.4
    A.(1,3,3;3)和(5,2,15;3)
    B.(1,1,5;5)和(5,2,20;9)
    C.(2,3,10;5)和(5,2,18;3)
    D.(5,2,16;3)和(5,2,21;9)

    查看答案

    试题参考答案:B、B

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

  • 试题6

    在采用标准UML构建的用例模型(Use-Case Model)中,参与者(Actor)与用例(Use Case)是模型中的主要元素,其中参与者与用例之间可以具有( )关系。
    A、包含(include)
    B、递归(Recursive)
    C、关联(Association)
    D、组合(Composite)

    查看答案

    试题参考答案:C

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

  • 试题7

    设循环队列 Q 的定义中有 rear 和 len 两个域变量,其中 rear 表示队尾元素的指针,len 表示队列的长度,如下图所示(队列长度为 3,队头元素为 e)。设队列的存储空间容量为 M,则队头元素的指针为( )  。

    A、(Q.rear+Q.len-1)
    B、(Q.rear+Q.len-1+M)%M
    C、(Q.rear-Q.len+1)
    D、(Q.rear-Q.len+1+M)%M

    查看答案

    试题参考答案:D

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

  • 试题8

    以下关于RISC(精简指令系统计算机)技术的叙述中,错误的是( )。
    A、指令长度固定、指令种类尽量少
    B、指令功能强大、寻址方式复杂多样
    C、增加寄存器数目以减少访存次数
    D、用硬布线电路实现指令解码,快速完成指令译码

    查看答案

    试题参考答案:B

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

  • 试题9

    在程序执行过程中,高速缓存(Cache) 与主存间的地址映射由(  )
    A.操作系统进行管理
    B.存储管理软件进行管理
    C.程序员自行安排
    D.硬件自动完成

    查看答案

    试题参考答案:D

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

  • 试题10

    设有向图G具有n个顶点、e条弧,采用邻接表存储,则完成广度优先遍历的时间复杂度为()
    A.O(n+e)
    B.O(n^2)
    C.O(e^2)
    D.O(n*e)

    查看答案

    试题参考答案:A

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

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

分享至:

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

下载APP-在线学习

培训课程

0元畅享

考试题库

免费资料

客服咨询