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

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

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

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

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

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

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

试题1

在面向对象软件开发过程中,采用设计模式( )。
A、允许在非面向对象程序设计语言中使用面向对象的概念  
B、以复用成功的设计和体系结构 
C、以减少设计过程创建的类的个数  
D、以保证程序的运行速度达到最优值

试题解析与讨论:www.cnitpm.com/st/78472702.html
试题参考答案:B

试题2

软件的互操作性是指( )。
A、软件的可移植性 
B、人机界面的可交互性 
C、连接一个系统和另一个系统所需的工作量 
D、多用户之间的可交互性 

试题解析与讨论:www.cnitpm.com/st/76312627.html
试题参考答案:C

试题3

对于线性表(由n个同类元素构成的线性序列),采用单向循环链表存储的特点之一是()。
A.从表中任意结点出发都能遍历整个链表
B.对表中的任意结点可以进行随机访问
C.对于表中的任意一个结点,访问其直接前驱和直接后继结点所用时间相同
D.第一个结点必须是头结点

试题解析与讨论:www.cnitpm.com/st/2471625311.html
试题参考答案:A

试题4

在支持多线程的操作系统中,假设进程P创建了若干个线程,那么( )是不能被这些线程共享的。
A.该进程中打开的文件
B.该进程的代码段
C.该进程中某线程的栈指针
D.该进程的全局变量

试题解析与讨论:www.cnitpm.com/st/2526720593.html
试题参考答案:C

试题5

进程P1、P2、P3、P4和P5的前趋图如下所示:



若用PV操作控制进程P1、P2、P3、P4和P5并发执行的过程,则需要设置5个信号量SI SZ 53 54和S5,且信号量S1~S5的初值都等于零,下图中a、b和c处应分别填写(  );d和e处应分别填写(  ),f和g处应分别填写(  )

1、A.V(S1) P(S1)和 V(S2) V(S3)
B.P(S1) V(Sl)和 V(S2) V(S3)
C.V[Sl) V(S2)和 P(S1) V(S3)
D.P(S1) V(S2)和 V(S1) V(S3)
2、A.V(S2)和 P(S4)
B.P(S2)和V(S4)
C.P(S2)和 P(S4)
D. V(S2)和 V(S4)
3、A. P(S3)和 V(S4)V(S5)
B. V(S3)和 P(S4)P(S5)
C. P(53)和 P(S4)P(S5)
D. V(53)和 V(S4)V(S5)

试题解析与讨论:www.cnitpm.com/st/2547727625.html
试题参考答案:A、B、C

试题6

对一待排序序列分别进行直接插入排序和简单选择排序,若待排序序列中有两个元素的值相同,则()保证这两个元素在排序前后的相对位置不变。
A.直接插入排序和简单选择排序都可以
B.直接插入排序和简单选择排序都不能
C.只有直接插入排序可以
D.只有简单选择排序可以

试题解析与讨论:www.cnitpm.com/st/249669059.html
试题参考答案:C

试题7: The project workbook is not so much a separate document as it is a structure imposed on the documents that the project will be producing anyway.
All the documents of the project need to be part of this ( ). This includes objectives ,external specifications , interface specifications , technical standards , internal specifications and administrative memoranda(备忘录).
Technical prose is almost immortal. If one examines the genealogy ( Ff ) of a customer manual for a piece of hardware or software , one can trace not only the ideas , but also many of the very sentences and paragraphs back to the first ( ) proposing the product or explaining the first design. For the technical writer, the paste-pot is as mighty as the pen.
Since this is so, and since tomorrow's product-quality manuals will grow from today’s memos, it is very important to get the structure of the documentation right. The early design of the project ( ) ensures that the documentation structure itself is crafted, not haphazard. Moreover, the establishment of a structure molds later writing into segments that fit into that structure.
The second reason for the project workbook is control of the distribution of (请作答此空). The problem is not to restrict information, but to ensure that relevant information gets to all the people who need it.
The first step is to number all memoranda, so that ordered lists of titles are available and h worker can see if he has what he wants. The organization of the workbook goes well beyond this to establish a tree-structure of memoranda. The ( ) allows distribution lists to be maintained by subtree, if that is desirable.
A.product
B.manual
C.document
D.information
试题解析与讨论:www.cnitpm.com/st/4076428479.html
试题参考答案:D

试题8

某程序运行时陷入死循环,则可能的原因是程序中存在( )。
A.词法错误
B.语法错误
C.动态的语义错误
D. 静态的语义错误

试题解析与讨论:www.cnitpm.com/st/2528112544.html
试题参考答案:C

试题9: 在高级语言源程序中,常需要用户定义的标识符为程序中的对象命名,常见的命名对象有()
①关键字(或保留字)②变量③函数④数据类型⑤注释
A.①②③
B.②③④
C.①③⑤
D.②④⑤
试题解析与讨论:www.cnitpm.com/st/392873294.html
试题参考答案:B

试题10

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

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

试题解析与讨论:www.cnitpm.com/st/247616854.html
试题参考答案:A、C

扫码关注公众号

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

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

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

相关内容

发表评论  查看完整评论  

推荐文章