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

软件设计师每日一练试题(2025/2/7)

2025年02月08日来源:信管网 作者:cnitpm

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

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

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

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

软件设计师每日一练试题内容(2025/2/7)

  • 试题1

    某模块实现两个功能:向某个数据结构区域写数据和从该区域读数据,该模块的内聚类型为(  )内聚。
    A.过程
    B.时间
    C.逻辑
    D.通信

    查看答案

    试题参考答案:D

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2025/2/7

  • 试题2

    在双核处理器中,双核是指( ) 
    A.执行程序时有两条指令流水线并行工作
    B.在一个CPU中集成两个运算核心以提高运算能力
    C.利用超线程技术实现的多任务并行处理
    D.在主板上设置两个独立的CPU以提高处理能力

    查看答案

    试题参考答案:B

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2025/2/7

  • 试题3

    甲公司接受乙公司委托开发了一项应用软件,双方没有订立任何书面合同。在此情形下()享有该软件的著作权。
    A.甲公司
    B.甲、乙公司共同
    C.乙公司
    D.甲、乙公司均不

    查看答案

    试题参考答案:A

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2025/2/7

  • 试题4

    以下的算法设计方法中, ( ) 以获取问题最优解为目标。
    A、回溯方法
    B、分治法
    C、动态规划
    D、递推

    查看答案

    试题参考答案:C

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2025/2/7

  • 试题5

    You are developing a sevver-side enterprise application. It must support a variety of different clients including desktop browsers , mobile browsers and native mobile applications. The application might also expose an API for 3rd parties to customer. It might also(  )with other applications via either web services or a message broker. The application handles requests(HTTP requests and messages)by executing business logic;accessing a databse;exchanging messages with other systems;and returning a HTML /JSON/XML (  )  . There are logical components corresponding to different functional areas of the application.
    What's the application' s deployment architecture?
    Define an architecture that structures the application as a set of (  )  ,collaborating services. This approach corresponds to the Y-axis of the ScaleCube. Each service is;
    Flighly maintainable and testable-enables rapid and frequent development and deployment.
    Loosely coupled with other services-enables a team to work independently(the majority of time on their servicers)without being impouted by changes to other services and without affecting other services.
    (  )  deployable-enable a team to deploy their services without having to cortdinate with other teams.
    Capable of being developed by a small team-essential for high productivity by avoiding the high communication head of large teams.
    Services (  )  using either synchronous protocols such as HTTP/REST or a synchronous protocols such as AMQP. Services can be developed and deployed independently of one another. Each service has its own database in order to be decoupled from other services. Data consistency between services is maintained using some particular pattern.
    (1)A、integrate
    B、Coordinate
    C、cooperate
    D、Communicate
    (2)A、request
    B、response
    C、text
    D、File
    (3)A、loosely coupled
    B、loosely cohesion
    C、High coupled
    D、Highly cohesion
    (4)A、Dependently
    B、Independently
    C、Coordinately
    D、Integratedly
    (5)A、interoprate
    B、coordinate
    C、communicate
    D、depend

    查看答案

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

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2025/2/7

  • 试题6

    图G的邻接矩阵如下图所示(顶点依次表示为v0、v1、v2、v3、v4、v5),G是(请作答此空)。对G进行广度优先遍历(从v0开始),可能的遍历序列为( )。

    (1)A.无向图
    B.有向图
    C.完全图
    D.强连通图
    (2)A.v0、v1、v2、v3、v4、v5
    B.v0、v2、v4、 v5、v1、v3
    C.v0、v1、v3、v5、v2、v4
    D.v0、v2、v4、v3、v5、v1

    查看答案

    试题参考答案:B、A

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2025/2/7

  • 试题7

    以下关于线性表存储结构的叙述,正确的是()。
    A.线性表采用顺序存储结构时,访问表中任意一个指定序号元素的时间 复杂度为常量级
    B.线性表采用顺序存储结构时,在表中任意位置插入新元素的运算时间复杂度为常量级
    C.线性表采用链式存储结构时,访问表中任意一个指定序号元素的时间复杂度为常量级
    D.线性表采用链式存储结构时,在表中任意位置插入新元素的运算时间复杂度为常量级

    查看答案

    试题参考答案:A

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2025/2/7

  • 试题8

    下图所示UML图为(请作答此空),用于展示( )。①和②分别表示( )。

    (1)A.类图
    B.组件图
    C.通信图
    D.部署图
    (2) A.一组对象、接口、协作和它们之间的关系
    B.收发消息的对象的结构组织
    C.组件之间的组织和依赖
    D.面向对象系统的物理模型
    (3)A.供接口和供接口
    B.需接口和需接口
    C.供接口和需接口
    D.需接口和供接口

    查看答案

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

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2025/2/7

  • 试题9

    CMU/SEI推出的( )将软件组织的过程能力分为五个成熟度级别,每一个级别定义了一组过程能力目标,并描述了要达到这些目标应该具备的实践活动。
    A、CMM 
    B、PSP 
    C、TSP 
    D、SSE-CMM 

    查看答案

    试题参考答案:A

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2025/2/7

  • 试题10

    将高级语言源程序翻译为可在计算机上执行的形式有多种不同的方式,其中(22)。
    A.编译方式和解释方式都生成逻辑上与源程序等价的目标程序
    B.编译方式和解释方式都不生成逻辑上与源程序等价的目标程序
    C.编译方式生成逻辑上与源程序等价的目标程序,解释方式不生成
    D.解释方式生成逻辑上与源程序等价的目标程序,编译方式不生成

    查看答案

    试题参考答案:C

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2025/2/7

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

分享至:

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

下载APP-在线学习