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

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

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

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

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

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

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

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

  • 试题1

    某计算机系统页面大小为4K,若进程的页面变换表如下所示,逻辑地址为十六进制1D16H。该地址经过变换后,其物理地址应为十六进制 ( ) 。

    A.1024H
    B.3D16H
    C.4D16H
    D.6D16H


    查看答案

    试题参考答案:B

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

  • 试题2

    已知某子系统为外界提供功能服务,但该子系统中存在很多粒度十分小的类,不便被外界系统直接使用,采用(1)设计模式可以定义一个高层接口,这个接口使得这一子系统更加容易使用;当不能采用生成子类的方法进行扩充时,可采用(2)设计模式动态地给一个对象添加一些额外的职责。
    (1)A、Facade(外观)
    B、Singleton(单件)
    C、Participant(参与者)
    D、Decorator(装饰)
    (2)A、Facade(外观)
    B、Singleton(单件)
    C、Participant(参与者)
    D、Decorator(装饰)

    查看答案

    试题参考答案:A、D

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

  • 试题3

    在白盒测试法中,(1)是最弱的覆盖准则。图2-5至少需要(2)个测试用例才可以完成路径覆盖,语句组2不对变量i进行操作。

    (1) A.语句
    B.条件
    C.判定
    D.路径
    (2) A.1
    B.2
    C.3
    D.4

    查看答案

    试题参考答案:A、C

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

  • 试题4

    下面关于集线器与交换机的描述中,错误的是()。
    A.交换机是一种多端口网桥
    B.交换机的各个端口形成一个广播域
    C.集线器的所有端口组成一个冲突域
    D.集线器可以起到自动寻址的作用

    查看答案

    试题参考答案:D

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

  • 试题5

    颜色深度是表达图像中单个像素的颜色或灰度所占的位数(bit)。若每个像素具有8位的颜色深度,则可表示( )种不同的颜色。
    A.8
    B.64
    C.256
    D.512

    查看答案

    试题参考答案:C

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

  • 试题6

    Teams are required for most engineering projects. Although some small hardware or software products can be developed by individuals, the scale and complexity of modem systems is such, and the demand for short schedules so great, that it is no longer (1) for one person to do most engineering jobs. Systems development is a team (2) ,and the effectiveness of the team largely determines the  (3) of the engineering.     Development teams often behave much like baseball or basketball teams. Even though they may have multiple specialties, allthe members work toward  (4)  .However,on systems maintenance and enhancement teams, the engineers often work relatively independently, much like wrestling and track teams.
    A team is  (5)  just a group of people who happen to work together.  Teamwork takes practice and it involves special skills. Teams require common processes; they need
    agreed-upon goals; and they need effective guidance and leadership. The methods for guiding and leading such teams are well known, but they are not obvious.
    (1)A.convenient
    B.existing
    C.practical
    D.real
    (2)A.activity
    B.job
    C.process
    D.application
    (3)A.size
    B.quality
    C.scale
    D.complexity
    (4)A.multiple objectives
    B.different objectives
    C.a single objective
    D.independent objectives
    (5)A.relatively
    B./
    C.only
    D.more than

    查看答案

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

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

  • 试题7

    以下  HTML  代码中,创建指向邮箱地址的链接正确的是  ( )  。
    A.<a href="email:test@test.com">test@test.com</a> 
    B. <a href="emailto:test@test.com ">test@test.com</a>
    C. <a href="mail:test@test.com"> test@test.com</a>
    D.<a href="m ailto:test@test.com">test@test.com</a>


    查看答案

    试题参考答案:D

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

  • 试题8

    某企业职工和部门的关系模式如下所示,其中部门负责人也是一个职工。职工和部门关系的外键分别是 (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/st/79122724.html

  • 试题9

    用户A从CA获得用户B的数字证书,并利用()验证数字证书的真实性。
    A.B的公钥
    B.B的私钥
    C.CA的公钥
    D.CA的私钥

    查看答案

    试题参考答案:C

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

  • 试题10

    甲和乙要进行通信,甲对发送的消息附加了数字签名,乙收到该消息后利用()验证该消息的真实性。
    A.甲的公钥
    B.甲的私钥
    C.乙的公钥
    D.乙的私钥

    查看答案

    试题参考答案:A

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

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

分享至:

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

下载APP-在线学习

培训课程

0元畅享

考试题库

免费资料

客服咨询