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

软件设计师每日一练试题(2024/6/28)

2024年06月29日来源:信管网 作者:cnitpm

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

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

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

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

软件设计师每日一练试题内容(2024/6/28)

  • 试题1

    以下关于高级语言程序的编译和解释的叙述中,正确的是  ( )  。
    A、编译方式下,可以省略对源程序的词法分析、语法分析
    B、解释方式下,可以省略对源程序的词法分析、语法分析
    C、编译方式下,在机器上运行的目标程序完全独立于源程序
    D、解释方式下,在机器上运行的目标程序完全独立于源程序

    查看答案

    试题参考答案:C

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2024/6/28

  • 试题2

    一个含有n个顶点和e条边的简单无向图,在其邻接矩阵存储结构中共有( )个零元素。
    A、e 
    B、2e 
    C、n2-e 
    D、n2-2e 

    查看答案

    试题参考答案:D

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2024/6/28

  • 试题3

    设 S 是一个长度为 n 的非空字符串, 其中的字符各不相同, 则其互异的非平凡子串(非空且不同于 S 本身) 个数为( ) 。
    A. 2n-1
    B. n²
    C. n(n+1)/2
    D. (n+2) (n-1)/2

    查看答案

    试题参考答案:D

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2024/6/28

  • 试题4

    函数 foo、hoo 的含义如下所示,函数调用 hota,x)的两个参数分别采用引用调用(call y reference)和值调用(callbyvalue)方式传递,则函数调用 foo(5)的输出结果为( )。

    A.2,5
    B.2,15
    C.13,5
    D.13,15

    查看答案

    试题参考答案:C

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2024/6/28

  • 试题5

    某计算机系统构成如下图所示,假设每个软件的千小时可靠度R为0.95,则该系统的小时可靠度约为()。
    A.0.95x(1-(1-0.95)^2)×0.95
    B.0.95×(1-0.95)^2×0.95
    C.0.95×2×(1-0.95)×0.95
    D.0.95^4×(1-0.95)^2

    查看答案

    试题参考答案:

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2024/6/28

  • 试题6

    设某算法的计算时间可用递推关系式T(n)=2T(n/2)+n表示,则该算法的时间复杂度为( )。
    A、O(lg n)
    B、O(nlg n)
    C、O(n)
    D、O(n2)

    查看答案

    试题参考答案:B

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2024/6/28

  • 试题7

    下图所示为(44)设计模式,适用于(45)。

    (44)
    A.适配器(Adapter)
    B.责任链(Chain of Responsibility)
    C.外观(Facade)
    D.桥接(Bridge)
    (45)
    A.有多个对象可以处理一个请求,在运行时刻自动确定由哪个对象处理
    B.想使用一个已经存在的类,而其接口不符合要求
    C.类的抽象和其实现之间不希望有一个固定的绑定关系
    D.需要为一个复杂子系统提供一个简单接口

    查看答案

    试题参考答案:C、D

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2024/6/28

  • 试题8

    For nearly  ten years,  the Unified Modeling Language  (UML) has been  the  industrystandard  for  visualizing,  specifying,  constructing,  and documenting  the(1) of  a software-intensive system. As the (2)standard modeling language, the UML facilitates communication and reduces confusion among project  (3) The recent standardization of UML 2.0 has  further extended  the  language's scope and viability.  Its  inherent expressiveness allows  users  to (4) everything  from  enterprise  information  systems  and  distributed Web-based applications to real-time embedded systems. The UML  is not  limited  to modeling software. In fact,  it  is expressive enough  to model (5) systems, such as workflow in the legal system, the structure and behavior of a patien healthcare system, software engineering in aircraft combat systems, and the design  of hardware. To understand the UML, you need to form a conceptual model of the language, and this requires learning three major elements: the UML's basic building blocks, the rules that dictate how  those  building  blocks may  be  put  together,  and  some  common mechanisms  that  apply throughout the UML.
    (1)A、classes
    B、components
    C、sequences
    D、artifacts
    (2)A、real
    B、legal
    C、de facto
    D、illegal
    (3)A、investors
    B、developers
    C、designers
    D、stakeholders
    (4)A、model
    B、code
    C、test
    D、modify
    (5)A、non-hardware
    B、non-software
    C、hardware
    D、software

    查看答案

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

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2024/6/28

  • 试题9

    编译器对高级语言源程序的处理过程可以划分为词法分析、语法分析、语义分析、中间代码生成、代码优化、目标代码生成等几个阶段,其中,  ( )  并不是每种编译器都必需的。
    A、词法分析和语法分析
    B、语义分析和中间代码生成
    C、中间代码生成和代码优化
    D、代码优化和目标代码生成

    查看答案

    试题参考答案:C

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2024/6/28

  • 试题10

    POP3协议采用( )模式,客户端代理与POP3服务器通过建立TCP连接来传送数据。
    A.Browser/Server
    B. Client/Server
    C.Peer to Peer
    D.Peer to Server

    查看答案

    试题参考答案:B

    试题解析与讨论:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2024/6/28

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

分享至:

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

下载APP-在线学习