专业软件设计师网站|培训机构|服务商(加客服微信:cnitpm或QQ:947530340进软件设计师学霸群)

软题库 培训课程
当前位置:信管网 >> 软件设计师 >> 每日一练 >> 文章内容
软件设计师每日一练试题(2022/12/25)
来源:信管网 2022年12月26日 【所有评论 分享到微信

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

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

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

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

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

  • 试题1

    程序设计语言中 ( ) 。
    A、while循环语句的执行效率比do-while循环语句的执行效率高
    B、while循环语句的循环体执行次数比循环条件的判断次数多1,而do-while语句的循环体执行次数比循环条件的判断次数少1
    C、while语句的循环体执行次数比循环条件的判断次数少1,而do-while语句的循环体执行次数比循环条件的判断次数多1
    D、while语句的循环体执行次数比循环条件的判断次数少1,而do-while语句的循环体执行次数等于循环条件的判断次数

    查看答案

    试题参考答案:D

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

  • 试题2

    在某C/C++程序中,整型变量a的值为0且应用在表达式“c=b/a”中,则最可能发生的情形是(50)。
    A.编译时报告有语法错误
    B.编译时报告有逻辑错误
    C.运行时报告有语法错误
    D.运行时产生异常

    查看答案

    试题参考答案:D

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

  • 试题3

    一个文法G=(N,T,P,S),其中N是非终结符号的集合,T是终结符号的集合,P是产生式集合,S是开始符号,令集合V=N∪T,那么G所描述的语言是( )的集合。
    A、由S推导出的所有符号串 
    B、由S推导出的所有终结符号串 
    C、V中所有符号组成的符号串 
    D、V的闭包中的所有符号串 

    查看答案

    试题参考答案:B

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

  • 试题4

    why have formal documents 
    first, writing the decisions down is essential.Only when one writes do the gaps appear and the    (1)    protrude(突出).The act of writing turns out to require hundreds of mini-decisions.and it is the existence of these that distinguishes clear.exact policies from fuzzy ones.
    Second.the documents will communicate the decisions to others. The manager will be continually amazed that poliaes he took for common knowledge are totally unknown by some member of his team . Since his fundamentaljob is to keep everybody going in the  (2)directon. his chief daily task will be communication, not decision-making,and his documents will immensely   (3)   this load.
    Finally.a manager,s documents give him a data base and checklist. By reviewing them (4)he sees where he is. and he sees what changes of emphasis or shifts in direction are needed.
    The task of the manager is to develop a plan and then to realize it. But only the written plan is precise and communicable. Such a plan consists of documents on what.when. how much.where.and who.This small set of critical documents  (5)  much of the manager.s   work.if their comprehensive and critical nature is recognized in the beginning. the manager can approach them as friendly tools rather than annoying busywork. He will set his direction much more crisply and quickly by doing so.
    (1)A.inconsistencies
    B.consistencies
    C.steadiness
    D.adaptability
    (2)A.other
    B.different
    C.another
    D.same
    (3)A.extend
    B.broaden
    C.lighten
    D.release
    (4)A.periodically
    B.occasionally
    C.infrequently
    D.rarely
    (5)A.decides
    B.encapsulates
    C.realizes
    D.recognizes

    查看答案

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

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

  • 试题5

    对以下四个序列用直接插入排序方法由小到大进行排序时,元素比较次数最少的是  ( )  。
    A、89, 27, 35, 78, 41, 15
    B、27, 35, 41, 16, 89, 70
    C、15, 27, 46, 40, 64, 85
    D、90, 80, 45, 38, 30, 25

    查看答案

    试题参考答案:C

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

  • 试题6

    (1)A、0
    B、1
    C、2
    D、3
    (2)A、P(S)、V(S)  和 V(S)
    B、P(S)、P(S)  和 V(S)
    C、V(S)、P(S)  和 P(S)
    D、V(S)、V(S)  和 P(S)

    查看答案

    试题参考答案:B、A

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

  • 试题7

    某模块内涉及多个功能,这些功能必须以特定的次序执行,则该模块的内聚类型为()内聚。
    A.时间
    B.过程
    C.信息
    D.功能

    查看答案

    试题参考答案:B

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

  • 试题8

    在关系代数运算中,关系S、SP和R如下表所示。若先(1),则可以从S和SP获得R。其对应的关系表达式为(2) 。如下的SQL语句可以查询销售总量大于1000 的部门号。 Select 部门名From S
    Where 部门号in (Select 部门号From SP Group by (3))关系表S 关系表SP 关系表R

    (2)
    (1)A、对S进行选择运算,再与SP进行自然连接运算
    B、对S进行选择运算,再与SP进行自然连接运算,最后进行投影运算
    C、对S和SP进行笛卡尔积运算,再对运算结果进行投影运算
    D、分别对S和SP进行投影运算,再对运算结果进行笛卡尔积运算
    (2)A. A
    B. B
    C. C
    D. D
    (3)A、部门号 where sum( 销售量)>1000
    B、部门号 having sum( 销售量)>1000
    C、商品号 where sum( 销售量)>1000
    D、商品号 having sum( 销售量)>1000

    查看答案

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

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

  • 试题9

    ( )是对稀疏矩阵讲行压缩存储的方式。
    A.二维数组和双向链表
    B.三元组顺序表和十字链表
    C.邻接矩阵和十字链表
    D.索引顺序表和双向链表

    查看答案

    试题参考答案:B

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

  • 试题10

    在YUV彩色空间中对YUV分量进行数字化,对应的数字化位数通常采用Y:U:V=( )。
    A、8:4:2 
    B、8:4:4 
    C、8:8:4 
    D、4:8:8 

    查看答案

    试题参考答案:B

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

扫码关注公众号

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

信管网致力于为广大信管从业人员、爱好者、大学生提供专业、高质量的课程和服务,解决其考试证书、技能提升和就业的需求。

信管网软考课程由信管网依托10年专业软考教研倾力打造,官方教材参编作者和资深讲师坐镇,通过深研历年考试出题规律与考试大纲,深挖核心知识与高频考点,为学员考试保驾护航。面授、直播&录播,多种班型灵活学习,满足不同学员考证需求,降低课程学习难度,使学习效果事半功倍。

相关内容

发表评论  查看完整评论  

推荐文章