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

软件设计师每日一练试题(2026/6/24)

2026年06月25日来源:信管网 作者:cnitpm

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

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

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

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

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

  • 试题1

    某企业职工和部门的关系模式如下所示,其中部门负责人也是一个职工。职工和部门关系的外键分别是 (1)。
    职工(职工号,姓名,年龄,月工资,部门号,电话,办公室)
    部门(部门号,部门名,负责人代码,任职时间)
    查询每个部门中月工资最高的“职工号”的 SQL 查询语句如下:
    Select 职工号 from 职工 as E
    where 月工资=(Select Max(月工资)from 职工 as M (2))。
    (1)A、职工号和部门号
    B、部门号和负责人代码
    C、职工号和负责人代码
    D、部门号和职工号
    (2)A、where M.职工号=E.职工号
    B、where M.职工号=E.负责人代码
    C、where M.部门号=部门号
    D、where M.部门号=E.部门号

    查看答案

    试题参考答案:B、D

    完整试题与解析:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2026/6/24

  • 试题2

    求单源点最短路径的迪杰斯特拉(Dijkstra)算法是按 ( ) 的顺序求源点到各顶点的最短路径的。
    A、路径长度递减
    B、路径长度递增
    C、顶点编号递减
    D、顶点编号递增

    查看答案

    试题参考答案:B

    完整试题与解析:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2026/6/24

  • 试题3

    在面向对象技术中,不同的对象在收到同一消息时可以产生完全不同的结果,这一现象称为(39),它由(40)机制来支持。利用类的层次关系,把具有通用功能的消息存放在高层次,而不同的实现这一功能的行为放在较低层次,在这些低层次上生成的对象能够给通用消息以不同的响应。  
    (39)
    A.绑定  

    查看答案

    试题参考答案:D、B

    完整试题与解析:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2026/6/24

  • 试题4

    对采用面向对象方法开发的系统进行测试时,通常从不同层次进行测试。对类中定义的每个方法进行测试属于( )层。
    A.系统

    查看答案

    试题参考答案:B

    完整试题与解析:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2026/6/24

  • 试题5

    A project is a [temporary] ( 1 )of unique,complex,and connected activities having one goal or purpose and that must be completed by a specific time,within budget,and according to ( 2 )。
    Project management is the process of scoping,planning,staffing,organizing,directing,and controlling the development of a(n) ( 3 ) system at a minimum cost within a specified time frame、
    For any systems development project,effective project management is necessary to ensure that the project meets the ( 4 ) ,is developed within an acceptable budget,and fulfills customer expectations and specifications、Project management is a process that starts at the beginning of a project,extends through a project,and doesn’t culminate until the project is completed、
    The prerequisite for good project management is a well-defined system development process、Process management is an ongoing activity that documents,manages the use of,and improves an organization’s chosen methodology (the“process”) for system development、Process management is concerned with the activities,deliverables,and quality standards to be applied to ( 5 ) project(s)、
    (1)A、task
    B、work
    C、sequence
    D、activity
    (2)A、specifications
    B、rules
    C、estimates
    D、designs
    (3)A、perfect
    B、acceptable
    C、controlled
    D、completed
    (4)A、deadline
    B、specification
    C、expectation
    D、requirement
    (5)A、asingle
    B、aparticular
    C、some
    D、all

    查看答案

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

    完整试题与解析:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2026/6/24

  • 试题6

    在IE浏览器中,安全级别最高的区域设置是( )。
    A.Internet

    查看答案

    试题参考答案:D

    完整试题与解析:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2026/6/24

  • 试题7

    对n个元素进行快速排序时,最坏情况下的时间复杂度为( )。
    A、O(1og2n) 
    B、O(n) 
    C、O(nlog2n) 
    D、0(n2) 

    查看答案

    试题参考答案:D

    完整试题与解析:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2026/6/24

  • 试题8

    栈的特点是后进先出,若用单链表作为栈的存储结构,并用头指针作为栈顶指针,则( )。
    A.入栈和出栈操作都不需要遍历链表

    查看答案

    试题参考答案:A

    完整试题与解析:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2026/6/24

  • 试题9

    在设计模块M和模块N时,( )是最佳的设计。
    A.M和N通过通信模块传送数据

    查看答案

    试题参考答案:A

    完整试题与解析:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2026/6/24

  • 试题10

    对下面的二叉树进行顺序存储(用数组MEM表示),已知结点A、B、C在MEM中对应元素的下标分别为1、2、3,那么结点D、E、F对应的数组元素下标为( )。

    A.4、5、6

    查看答案

    试题参考答案:D

    完整试题与解析:www.cnitpm.com/exam/ExamDay.aspx?t1=4&day=2026/6/24

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

分享至:

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

下载APP-在线学习