当前位置:文档之家› [[真题]2017年下半年 软件评测师 下午试卷 综合知识]

[[真题]2017年下半年 软件评测师 下午试卷 综合知识]

[[真题]2017年下半年 软件评测师 下午试卷 综合知识]
[[真题]2017年下半年 软件评测师 下午试卷 综合知识]

阅读下列C程序,回答问题1至问题3,将解答填入答题纸的对应栏内。

[C程序]

IntDoString(char*string){

cbar*argv[100];

Intargc=l;

while(l){//1

while(*string&&*string!='-')//2,3

String++;//4

If(!*string)//5

break;//6

argv[argc]=string;

while(*string&&*string!="&&*string!='\n'&&*string!='\t')//7,8,9,10

string++;//11

argc+;//12

Return0;//13

问题1:请针对上述C程序给出满足100%DC(判定覆盖)所需的逻辑条件。

问题2:请画出上述程序的控制流图,并计算其控制流图的环路复杂度V(G)。问题3:请给出问题2中控制流图的线性无关路径。

阅读下列说明,回答问题1至问题3.将解答填入答题纸的对应栏内。

说明某银行B和某公司C发行联名信用卡,用户使用联名信用卡刷卡可累计积分,积分累计规则与刷卡金额和刷卡日期有关,具体积分规则如表2-1所示。此外,公司C的会员分为普通会员、超级会员和PASS会员三个级剔,超级会员和PASS会员在刷卡时有额外积分奖励,奖励规则如表2-2所示。

表2-1积分规则

表2-2额外积分奖励规则

银行B开发了一个程序来计算用户每次刷卡所累积的积分,程序的输入包括会员级别L、刷卡日期D 和刷卡金额A.程序的输出为本次积分S。其中。L为单个字母且大小写不敏感.D由程序直接获取系统日期.A为正浮点数最多保留两位小数.S为整数。

问题1

采用等价类划分法对该程序进行测试,等价类表如下表所示,请补充表2-3中空()~()

问题2

根据以上等价类表设计的测试用例如下表所示,请补充表2-4中空()~()

表2-4测试用例

问题3

如果规定了单次刷卡的积分上限为20∞O(即S取值大于等于0且小于等于200∞),则还需要针对S 的取值补充一些测试用例。假设采用等价类划分法和边界值分析法来补

充用例,请补充表2-5、表2-6中的空()~()。

表2-5补充等价类

试题三

阅读下列说明,回答问题1至问题3.将解答填入答题纸的对应栏内。

说明某公司欲开发一套基于Web的通用共享单车系统。该系统的主要功能如下: 1.商家注册、在线支付:后台业务员进行车辆管理与监控、查询统计、报表管理、价格设置、管理用户信息。

2.用户输入手机号并在取验证码后进行注册、点击用车后扫描并获取开锁密码、锁车(机械锁由用户点击结束用车)后3秒内显示计算的费用,用户确认后支付、查看显示时阅与路线及其里程、预约用车、投诉。

问题1 采用性能测试工具在对系统性能测试时,用Apdex(应用性能指数)对用户使用共享单车的满意度进行量化,系统需要满足Apdex指数为0.90以上。Apdex量化时,对应用户满意度分为三个区间,通过响应时间数值T来划分.T值代表着用户对应用性能满意的响应时间界限或者说是"门槛"(Threshold)。针对用户请求的响应时间,Apdex的用户满意度区间如下:

满意:(0,T)让用户感到很愉快

容忍:(T,4T)慢了一点,但还可以接受,继续这一应用过程

失望:>4T,太慢了,受不了了,用户决定放弃这个应用

Apdex的计算如下:

Apdex=(小于τ的样本数+T~4T的样本数/2)/.总样本数

针对用户功能,本系统设定T=2秒,记录响应时间,统计样本数量。2秒以下记录数300,2~8秒记录数1000,大于8秒500。请计算本系统的Apdex指数,并说明本系统是否达到要求。

问题2 系统前端采用HTML5实现,已使用户可以通过不同的移动设备的浏览器进行访问。设计兼用行测试矩阵,对系统浏览器兼容性进行测试。

问题3 针对用户手机号码获取验证码进行注册的功能,设计4个测试用例。(假设合法手机号码为11位数字,验证码为4位数字)

试题四

图4-1是某企业信息系统的一个类图,图中属性和方法前的"+"、"#"和"-"分别表示公有成员、保护成员和私有成员。其中:

图4-1类图

(1)类Manager重新实现了类Employeede的方法calSalary(),类Manager中的方法querySalary ()继承了其父类Employee的方法querySalary()。

(2)创建类Employee的对象时,给其设置职位(position)、基本工资(basicSalary)等信息。方法calSalary()根据个人的基本工资、当月工资天数(workDays)和奖金φonus)等按特定规则计算员工工资。

(3)类Department中的方法statSalary中首先调用了该类的方法load(),获取本部门员工列表,然后调用了类Employee中的方法calSalary()。现拟采用面向对象的方法进行测试。

问题1图4-1所示的类图中,类陆nager和类E吨,loy,臼之间是什么关系?该关系对测试的影响是什么?

问题2(1)类Manager重新实现了类Employe的方法calSalary(),这是面向对象的什么机制?是否需要重新测试该方法?

(2)类Manager中的方法querySa1ary()继承了其父类Employee的方法querySalary(),是否需要重新测试该方法?

问题3(1)请结合题干说明中的描述,给出测试类Employee方法calSalary()时的测试序列。(2)请给出类图4-1中各个类的测试顺序。

问题4 从面向对象多态特性考虑,测试方法statSalary()时应注意什么?

试题五

阅读下列说明,回答问题1至问题3,将解答填入答题纸的对应栏内。

某飞行器供油阀控制软件通过控制左右两边的油箱BL、BR向左右发动机EL、ER供油,既要保证飞行器的安全飞行,又要保证飞行器的平衡,该软件主要完成的功能如下:(1)无故障情况下,控制左油箱BL向左发动机EL供油,右油箱供油,不上报故障;(2)当左油箱BL故障时,控制右油箱BR分别向左、右发动机EL和ER供油,并上报二级故障一一左油箱故障;

(3)当右油箱BR故障时,控制左油箱BL分别向左、右发动机EL和ER供油,并上报二级故障——右油箱故障;

(4)当左发动机EL故障时,根据左右油箱的剩油量决定(如果左右油箱剩油量之差大于等于50升,则使用剩油量多的油箱供泊,否则同侧优先供油)左油箱BL还是右油箱BR向右发动机ER供油,并上报一级故障——左发动机故障;

(5)当右发动机ER故障时,根据左右油箱的剩油量决定(如果左右油箱剩油量之差大于等于50升,则使用剩油量多的油箱供油,否则同侧优先供油)左油箱且还是右油箱BR向左发动机EL供油,井上报一级故障一一右发动机故障;

(6)当一个油箱和一个发动机同时故障时,则无故障的油箱为无故障发动机供油,并上报一级故障一一故障油箱和发动机所处位置;

(7)当两个油箱或两个发动机同时故障或存在更多故障时,则应进行双发断油控制,并上报特级故障一一两侧油箱或两侧发动机故障;

(8)故障级别从低级到高级依次为二级故障、一级故障和特级故障,如果低级故障和高级故障同时发生,则只上报最高级别故障。

【问题1】(6分)覆盖率是度量拥试完整姓的一个手段,也是度量测试有效性的一个手段。在嵌入式软件白盒测试过程中,通常以语句覆盖率、条件覆盖率和MC/DC覆盖率作为度量指标。在实现第6条功能时,设计人员采用了下列算法:

请指出对上述算法达到100%语句覆盖、100%条件覆盖和100%MC/DC覆盖所需的

最少测试用例数目,填写表5-1中的空(1)~(3)。

【问题2】(12分)

为了测试此软件功能,测试人员设计了表5-2所示的测试用例,请填写该表中的空(1)~(12)。

【问题3】

常见的黑盒测试的测试用例设计方法包括等价类划分、决策表、因果图、边界值分析等。测试人员在针对本题设计测试时,使用哪种测试用例设计方法最恰当?

2018年上半年教师资格证考试初级英语真题

2018年上半年中小学教师资格考试 英语学科知识与教学能力试题(初级中学) 注意事项: 1.考试时间120分钟,满分150分。 2.请按规定时间在答题卡上填涂、作答。在试卷上作答无效,不予评分。 一、单项选择题(本大题共30小题,每小题2分,共60分)在每小题列出的四个备选项中只有一个是符合题目要求的,请用2B铅笔把答题卡上对应题目的答案字母按要求涂黑。错选、多选或未选均无分。 1.The similarity between the English consonants/p/,/b/,and/m/is that they are all(). A.fricative B.plosive https://www.doczj.com/doc/786565826.html,bial-dental D.bilabial 2.Which of the following is a back vowel in English?() A./?:/ B./?:/ C./?/ D./e/ 3.There is only one playground slide in this school,so the students have to take()to use it. A.turns B.the turns C.a turn D.the turn 4.Out of everyone’s expectation,Johnson suddenly returned()a rainy night. A.at B.in C.on D.during 5.She()it very well when she described her younger brother as“brilliant but lazy”. A.put B.made C.assumed D.interpreted 6.We don’t think()possible to master a foreign language without much memory work. A.this B.that C.its D.it 7.()the same mistakes in the annual financial report again made his boss very angry.

2018年软件评测师真题及答案

一、上午题 以下关于信息和数据的描述中,错误的是(1)。 (1)A.通常从数据中可以提取信息 B.信息和数据都由数字组成 C.信息是抽象的、数据是具体的 D.客观事物中都蕴涵着信息 【答案】B 【解析】 数据是描述事物的符号记录,其具有多种表现形式,可以是文字、图形、图像、声音和语言等。信息是现实世界事物的存在方式或状态的反映。信息具有可感知、可存储、可加工、可传递和可再生等自然属性数据是经过组织化的比特的集合,而信息是具有特定释义和意义的数据。 (2)服务的主要作用是提供远程登录服务。 (2)A.Gopher B.FTP C.Telnet D.E-mail 【答案】C 【解析】 Telnet协议是TCP/IP协议族中的一员,是Internet远程登陆服务的标准协议和主要方式。它为用户提供了在本地计算机上完成远程主机工作的能力。在终端使用者的电脑上使用telnet程序,用它连接到服务器。终端使用者可以在telnet程序中输入命令,这些命令会在服务器上运行,就像直接在服务器的控制台上输入一样。可以在本地就能控制服务器。要开始一个telnet会话,必须输入用户名和密码来登录服务器。 Gopher是Internet上一个非常有名的信息查找系统,它将Internet上的文件组织成某种索引,很方便地将用户从Internet的一处带到另一处。在WWW出现之前,Gopher是Internet上最主要的信息检索工具,Gopher站点也是最主要的站点,使用tcp70端口。 现在它基本过时,人们很少再使用。 计算机系统中,CPU对主存的访问方式属于(3)。 (3)A.随机存取 B.顺序存取C.索引存取D.哈希存取 【答案】A 【解析】 在指令系统的各种寻址方式中,获取操作数最快的方式是(4)。 (4)A.直接寻址 B.间接寻址C.立即寻址D.寄存器寻址 【答案】C【解析】

2017年自考英语真题下载及问题详解

词汇与语法B 1、Tom ________ more than twenty pounds on the novel. A.spent B.paid C.cost D.took 答案:A 2、A pair of spectacles ________ what I need at the moment. A.is B.are C.has D.have 答案:A 3、I won’t make the _______ mistake next time. A.like B.same C.near D.similar 答案:B 4、He _______ driving me home, even though I told him I lived nearby. A.insisted on B.insisted at C.insisted that D.insisted in 答案:A 5、The boy is not happy at the new school. He has ________ friends there. A.few B.a few C.little D.a little 答案:A 6、Measles(麻疹) ________ a long time to get over.

C.take D.takes 答案:D 7、I don’t know _______ to deal with such matter. A.what B.how C.which D./ 答案:B 8、- Do you want to wait? - Five days ________ too long for me to wait. A.was B.were C.is D.are 答案:C 9、- _______ is your girl friend like? - She is very kind and good-looking. A.How B.What C.Which D.Who 答案:B 10、I fell and hurt myself while I ________ basketball yesterday. A.was playing B.am playing C.play D.played 答案:A 11、He _______ lives in the house where he was born. A.already

2013下半年软件评测师考试真题及答案-下午卷

2013下半年软件评测师考试真题及答案-下午卷 试题一 【说明】 逻辑覆盖法是设计白盒测试用例的主要方法之一,通过对程序逻辑结构的遍历实现程序 的覆盖。针对以下由C语言编写的程序,按要求回答问题。 int XOR(char * filename, unsigned long key){ FILE * input = NULL,*output = NULL; //1 char * outfilename = NULL; int len = strlen(filename); unsigned char buffer; if((filename[len-2] == ‘.’) && (filename[len-l] == ‘c’)){ //2,3 outfilename = new char[len+l]; //4 strcpy(outfilename,filename); outfilename[len-2] = ‘\0’; } else{ //5 outfilename = new char[len+5]; strcpy(outfilename , filename); strncat(outfilename,”.c”,2); } input = fopen(filename,”rb”); if( input = NULL){ //6 cout<<"Error opening file " << filename <

2017年下半年教师资格证考试《英语学科知识与教学能力》真题(高级中学)及详解

2017年下半年教师资格证考试 《英语学科知识与教学能力》真题(高级中学) (总分150, 考试时间120分钟) 一、单项选择题 本大题共 30 小题,每小题 2 分,共 60 分。在每小题列出的四个备选项中选择一个最佳答案,错选、多选或未选均无分。 1. The sound of "th" in "thin" is ( ). A voiceless, dental, and fricative B voiced, dental, and fricative C voiceless, dental, and affricative D voiced, dental, and affricative 答案:A 本题考查辅音的发音。本题属于语音知识,也属于语言学中语音学的知识。th 字母组合在单词thin 中发/θ/音,发此音时,声带是不振动的,即不带声的(voiceless);另外,发/θ/音时舌头要顶住牙齿,所以叫齿音(dental);按照发音方式,它是空气通过与牙齿摩擦发出的声音,属于擦音(fricative)。故本题选 A。 2. Of all the following pairs of words, ( ) is a minimal pair. A boot and bought B deep and dog C either and neither D ghost and best 答案:A 本题考查音系学中的最小对立体。最小对立体(minimal pair)指除了出现在同一位置上的一个音之外其余都相同的两个语音组合。在音位分析中,只涉及一个音素差别的对立体叫做最小对立体。如 pen[pen]和 ben[ben]。几个选项中只有 A 项中两个单词的元音发音不同,前后两个音都是爆破音/b/和/t/。故本题选 A。 3. ( ) can fly very high in ( ) sky. A The birds…the B The birds…/ C Birds…the D Birds…/ 答案:C 本题考查冠词。句意为"鸟可以在天空中飞得很高"。"不定冠词+单数名词"或单个复数名词可表示一类,这里 birds 指的是鸟类,表示泛指,不加定冠词;sky 是世界上独一无二的事物,前面用定冠词 the 修饰。故本题选 C。 4. In my opinion she is kind and polite, so I put her rudeness today down as ( ). A ordinary B untimely C progessive D accidental 答案:D 本题考查形容词辨析。句意为"在我看来她是善良和有礼貌的,因此我认为她今天的粗鲁是偶然的"。ordinary"普通的",untimely"过早的,不适时的",progressive"进步的;进行的",accidental"意外的,偶然的"。故本题选 D。 5. With spring approaching, the pink of the apple-blossom is beginning to ( ). A show B grow C rise D ascend 答案:A 本题考查动词辨析。句意为"随着春天的到来,粉红的苹果花开始出现在枝头"。show"露出,出

2018年下半年软件评测师考试真题(上午)

2018年下半年软件评测师考试真题(上午) 以下关于信息和数据的描述中,错误的是() (1) A.通常从数据中可以提取信息 B.信息和数据都由数字组成 C.信息是抽象的、数据是具体的 D.客观事物中都蕴涵着信息 ()服务的主要作用是提供远程登录服务。 (2) A. Gopher B.FTP C.Te Inet D.E-mail 计算机系统中,CPU对主存的访问方式属于()。 (3) A.随机存取B.顺序存取C.索引存取D.哈希存取 在指令系统的各种寻址方式中,获取操作数最快的方式是()O (4) A.直接寻址B.间接寻址C.立即寻址D.寄存器寻址 在计算机外部设备和主存之间直接传送而不是由CPU执行程序指令进行数据传送的控制方式称为()O (5) A.程序查询方式 B.中断方式 C.并行控制方式

D.DMA方式 若计算机中地址总线的宽度为24位,则最多允许直接访问主存储器()的物理空间(以字节为单位编址)。 (6) A. 8MB B.16MB C.8GB D.16GB 根据《计算机软件保护条例》的规定,著作权法保护的计算机软件是指()。 (7) A.程序及其相关文档 B.处理过程及开发平台 C.开发软件所用的算法 D.开发软件所用的操作方法 以下说法中,错误的是()。 (8) A.张某和王某合作完成一款软件,他们可以约定申请专利的权利只属于张某 B.张某和王某共同完成了一项发明创造,在没有约定的情况下,如果张某要对其单独申请专利就必须征得王某的同意 C.张某临时借调到某软件公司工作,在执行该公司交付的任务的过程中,张某完成的发明创造属于职务发明 D.甲委托乙开发了一款软件,在没有约定的情况下,由于甲提供了全部的资金和设备,因此该软件著作权属于甲 防火墙对数据包进行过滤时,不能过滤的是()。 (9) A.源和目的IP地址 B.存在安全威胁的URL地址 C.IP协议号 D.源和目的端口 采用()表示带符号数据时,算术运算过程中符号位与数值位采用同样的运算规则进行处理。 (10) A.补码B.原码C.反码D.海明码

软件评测师考试习题

2006年上半年软件评测师上午试题 ● 在计算机系统中,存取速度最快的是___(1)___。 (1)A.CPU内部寄存器 B.计算机的高速缓存Cache C.计算机的主存D.大容量磁盘 ● 模块的耦合度描述了___(2)___。 (2)A.模块内各种元素结合的程度B.模块内多个功能之间的接口 C.模块之间公共数据的数量D.模块之间相互关联的程度 ● 若某计算机系统是由500个元器件构成的串联系统,且每个元器件的失效率均为10-7/H,在不考虑其它因素对可靠性的影响时,该计算机系统的平均故障间隔时间为___(3)___小时。 (3)A.2×1O4 B.5×1O4 C.2×1O5D.5×105 ● 内聚是一种指标,表示一个模块___(4)___。 (4)A.代码优化的程度 B.代码功能的集中程度 C.完成任务时及时程度 D.为了与其他模块连接所要完成的工作量 ● 为了解决进程间的同步和互斥问题,通常来用一种称为___(5)___机制的方法。若系统中有5个进程共享若干个资源R,每个进程都需要4个资源R,那么使系统不发生死锁的资源R的最少数目是___(6)___。 (5)A.调度B.信号量C.分派D.通讯 (6)A.20 B.18 C.16 D.15 ● 在UNIX操作系统中,把输入/输出设备看作是___(7)___。 (7)A.普通文件B.目录文件C.索引文件D.特殊文件 ● 某磁盘盘组共有10个盘面,每个盘面上有100个磁道,每个磁道有16个扇区,假定分配以扇区为单位。若使用位示图管理磁盘空间,则位示图需要占用 ___(8)___字节空间。 (8)A.16000 B.1000 C.2000 D.1600

(完整版)2017年考研英语一试卷真题

2017年考研英语一真题原文及答案解析完整版 SectionⅠUse of English Directions: Read the following text.Choose the best word(s)for each numbered blank and mark A,B,C or D on the ANSWER SHEET.(10 points) Could a hug a day keep the doctor away?The answer may be a resounding"yes!"_____(1)helping you feel close and_____(2)to people you care about,it turns out that hugs can bring a_____(3)of health benefits to your body and mind.Believe it or not,a warm embrace might even help you_____(4)getting sick this winter. In a recent study_____(5)over 400 healthy adults,researchers from Carnegie Mellon University in Pennsylvania examined the effects of perceived social support and the receipt of hugs_____(6)the participants' susceptibility to developing the common cold after being_____(7)to the virus.People who perceived greater social support were less likely to come_____(8)with a cold,and the researchers_____(9)that the stress-reducing effects of hugging_____(10)about 32 percent of that beneficial effect._____(11)among those who got a cold,the ones who felt greater social support and received more frequent hugs had less severe_____(12). "Hugging protects people who are under stress from the_____(13)risk for colds that's usually_____(14)with stress,"notes Sheldon Cohen,a professor of psychology at Carnegie,Hugging"is a marker of intimacy and help_____(15)the feeling that others are there to help_____(16)difficulty." Some experts_____(17)the stress-reducing,health-related benefits of hugging to the release of oxytocin,often called"the bonding hormone"_____(18)it promotes attachment in relationships,including that between mothers and their newborn babies.Oxytocin is made primarily in the central lower part of the brain,and some of it is released into the bloodstream.But some of it_____(19)in the brain,where it_____(20)mood,behavior and physiology.

2014年下半年软件评测师下午真题(含答案)

2014年下半年软件评测师下午真题(含答案) 试题一(共20分) 阅读下列C程序,回答问题1至问题3,将解答填入答题纸的对应栏内。 【C程序】 int GetMaxDay( int year, int month){ int maxday=0;//1 if( month>=1&&month<=12){ //2,3 if(month==2){ //4 if( year%4==0){ //5 if(year%100==0){ //6 if( year%400==0) //7 maxday= 29; //8 else //9 maxday= 28; } else //10 maxday= 29; } else maxday = 28; //11 } else{ //12 if (month=4||month=6||month=9||month=11) //13, 14,15,16 maxday = 30; //17 else //18 maxday = 31; } } return maxday; //19 } 【问题1】(6分) 请针对上述C程序给出满足100%DC(判定覆盖)所需的逻辑条件。 【问题2】(9分)

请画出上述程序的控制流图,并计算其环路复杂度V(G)。【问题3】(5分) 请给出问题2中控制流图的线性无关路径。 参考答案: 【问题1】: Month>=1&&month<=12 Month==2 Year%4==0 Year%100==0 Year%400==0 Month==2 Month==4 Month==6 Month==9 Month==11 【问题2】: V(G)=11 【问题3】:

2014年下初级英语真题

2014年下半年中小学教师资格考试 英语学科知识与教学能力试题(初级中学) 注意事项: 1.考试时间为120分钟,满分为150分。 2.请按规定在答题卡上填涂、作答。在试卷上作答无效,不予评分 一、单项选择题(本大题共30小题,每小题2分,共60分)在每小题列出的四个备选项中选择一个最佳答案,请用2B铅笔把答题卡上对应题目的答案字母按照要求涂黑。错选、多选或未选均无分。 1.Which of the following shows the proper pronunciation of the segment“ten bikes”in connected speech?(). A./tem baiks/ B./ten baiks/ C./t?m baiks/ D./t?n baiks/ 2.()is NOT included in the factors used in analyzing vowels. A.Position of the tongue B.Shape of lips C.Openness of the mouth D.Openness of the vocal cords 3.The study highlights how our sense of right and wrong isn’t just based on()religion and philosophy,but also on the biology of our brain. A.rising-up B.bring-up C.rising D.upbringing 4.Founded in2003,the company specializes in canned fruits and vegetables and()food export business.

软件测试工程师考试历年试题及解答

软件评测师考试历年试题及解答 软件评测师考试大纲(2005年版) 一、考试说明 1. 考试要求 (1)熟悉计算机基础知识; (2)熟悉操作系统、数据库、中间件、程序设计语言基础知识; (3)熟悉计算机网络基础知识; (4)熟悉软件工程知识,理解软件开发方法及过程; (5)熟悉软件质量及软件质量管理基础知识; (6)熟悉软件测试标准; (7)掌握软件测试技术及方法; (8)掌握软件测试项目管理知识; (9)掌握C语言以及C++或Java语言程序设计技术; (10)了解信息化及信息安全基础知识; (11)熟悉知识产权相关法律、法规; (12)正确阅读并理解相关领域的英文资料。 2. 通过本考试的合格人员能在掌握软件工程与软件测试知识的基础上,运用软件测试管理办法、软件测试策略、软件测试技术,独立承担软件测试项目;具有工程师的实际工作能力和业务水平。 3. 本考试设置的科目包括: (1)软件工程与软件测试基础知识,考试时间为150分钟,笔试,选择题; (2)软件测试应用技术,考试时间为150分钟,笔试,问答题。 二、考试范围 考试科目1:软件工程与软件测试基础知识 1.计算机系统基础知识 1.1 计算机系统构成及硬件基础知识 ·计算机系统的构成 ·处理机 ·基本输入输出设备 ·存储系统 1.2 操作系统基础知识 ·操作系统的中断控制、进程管理、线程管理 ·处理机管理、存储管理、设备管理、文件管理、作业管理 ·网络操作系统和嵌入式操作系统基础知识 ·操作系统的配置 1.3 数据库基础知识 ·数据库基本原理 ·数据库管理系统的功能和特征 ·数据库语言与编程

1.4 中间件基础知识 1.5 计算机网络基础知识 ·网络分类、体系结构与网络协议 ·常用网络设备 ·Internet基础知识及其应用 ·网络管理 1.6 程序设计语言知识 ·汇编、编译、解释系统的基础知识 ·程序设计语言的基本成分(数据、运算、控制和传输、过程(函数)调用)·面向对象程序设计 ·C语言以及C++(或Java)语言程序设计基础知识 2.标准化基础知识 ·标准化的概念(标准化的意义、标准化的发展、标准化机构) ·标准的层次(国际标准、国家标准、行业标准、企业标准) ·标准的类别及生命周期 3.信息安全知识 ·信息安全基本概念 ·计算机病毒及防范 ·网络入侵手段及防范 ·加密与解密机制 4.信息化基础知识 ·信息化相关概念 ·与知识产权相关的法律、法规 ·信息网络系统、信息应用系统、信息资源系统基础知识 5.软件工程知识 5.1 软件工程基础 ·软件工程概念 ·需求分析 ·软件系统设计 ·软件组件设计 ·软件编码 ·软件测试 ·软件维护 5.2 软件开发方法及过程 ·结构化开发方法 ·面向对象开发方法 ·瀑布模型 ·快速原型模型 ·螺旋模型 5.3 软件质量管理 ·软件质量及软件质量管理概念 ·软件质量管理体系 ·软件质量管理的目标、内容、方法和技术 5.4 软件过程管理

教师资格证考试:2018下初中英语真题

2018年下半年中小学教师资格考试 英语学科知识与教学能力试题(初级中学) 注意事项 1.考试时间120分钟,满分150分。 2.请按規定在答题卡上填涂、作答。在试卷上作答无效,不予评分。 一、单项选择题(本大题共30小题,每小题2分,共60分) 在每小题列出的四个备选项中选择一个最佳答案,请用2B铅笔把答题卡上对应 题目的答案字母按要求涂黑。错选、多选或未选均无分。 1.Which of the following underlined parts is different from others in pronunciation? A.wished B.jumped C.kissed D.waited 2.Which of the following shows the general intonation pattern in a complex sentence? A.When I started my↗career there was no↗unemployment. B.When I started my↗career there was no↘unemployment. C.When I started my↘career there was no↗unemployment. D When I started my↘career there was no↘unemployment. 3.All the SSS in this school are taught by the same teacher. A.six-year-olds B.six-years-old C.six-year-old D.six-years-olds 4.The risk of infection for that patient hasn’t diminished after the operation.SSS, it has increased. A.On the whole B.On the contrary C.On the average D.On the other hand progress is measured.5.Testing is still a usual means SSS which students’ A.in B.at C.of D.by 6.Many people SSS in the project at both research and editing stages and we would like to thank them all here. A.have involved B.have been involved C.having involved D.having been involved 7.Only until very recently SSS possible that grammarians are able to make accurate . statements about the rules of some languages

2018年下半年软件评测师考试下午真题(完整版)

2018年下半年软件评测师考试下午真题(专业解析+ 参考答案) 1、阅读下列C程序,回答问题1至问题3,将解答填入答题纸的对应栏内。 问题内容: 【问题1】(3分) 请针对上述C程序给出满足100%DC(判定覆盖)所需的逻辑条件。 【问题2】(8分) 请画出上述程序的控制流图,并计算其控制流图的环路复杂度V(G)。 【问题3】(4分) 请给出问题2中控制流图的线性无关路径。 2、阅读下列说明,回答问题1至问题2,将解答填入答题纸的对应栏内。 【说明】 某连锁酒店集团实行积分奖励计划,会员每次入住集团旗下酒店均可以获得一定积分,积分由欢迎积分加消费积分构成。其中欢迎积分跟酒店等级有关,具体标准如表2-1所示;消费积分跟每次入住消费金额有关,具体标准为每消费

1元获得2积分(不足1元的部分不给分)。此外,集团会员分为优先会员、金会员、白金会员三个级别,金会员和白金会员在入住酒店时可获得消费积分的额外奖励,奖励规则如表2-2所示。 表2-1 集团不同等级酒店的欢迎积分标准 表2-2 额外积分奖励规则 该酒店集团开发了一个程序来计算会员每次入住后所累积的积分,程序的输入包括会员级别L、酒店等级C和消费金额A(单位:元),程序的输出为本次积分S。其中,L为单个字母且大小写不敏感,C为取值1到6的整数,A为正浮点数且最多保留两位小数,S为整数。 问题内容:【问题1】(7分) 采用等价类划分法对该程序进行测试,等价类表如表2-3所示,请补充表2-3中空(1)-(7)。 表2-3 等价类 【问题2】(13分) 根据以上等价类表设计的测试用例如下表所示,请补充表2-4中空(1)-(13)。

2007年上半年软件评测师考试真题(下午)

2007年上半年软件评测师考试真题(下午) 一、阅读下列说明,回答问题 1 至问题 3,将解答填入答题纸的对应栏内。[说明] 以下代码由 C 语言书写,能根据指定的年、月计算当月所含天数。 int GetMaxDay( int year, int month ) { int maxday = 0; if ( month >= 1 && month <= 12 ) { if ( month == 2 ) { if ( year % 4 == 0 ) { if ( year % 100 == 0 ) { if ( year % 400 == 0 ) maxday = 29; else maxday = 28; } else maxday = 29; } else maxday = 28; } else {

if ( month == 4 || month == 6 || month == 9 || month == 11 ) maxday = 30; else maxday = 31; } } return maxday; } [问题 1] 请画出以上代码的控制流图。 [问题 2] 请计算上述控制流图的环路复杂度 V(G)。 [问题 3] 假设 year 的取值范围是 1000 < year < 2001,请使用基本路径测试法为变量year、month 设计测试用例(写出 year 取值、month 取值、maxday 预期结果),使之满足基本路径覆盖要求。 二、阅读下列说明,回答问题 1 至问题 5,将解答填入答题纸的对应栏内。 [说明] 负载压力性能测试是评估系统性能、性能故障诊断以及性能调优的有效手段。下述表格是针对税务征管系统中“税票录入”业务的测试结果,系统服务器端由应用服务器和单节点数据库服务器组成。

2017年MBA英语真题及答案

2017年硕士研究生入学考试英语(二)试题+答案 【MBA中国网讯】2017年硕士研究生入学考试已经落下了帷幕,MBA中国网小编为大家整理了2017年硕士研究生入学考试英语(二)试题+答案,以供大家参考。 Directions: Readthefollowingtext.Choosethebestword(s)foreachnumberedblankandmarkA,B,CorDon the ANSWER SHEET. (10 points) People have speculated for centuries about a future without work .Today is no different, with academics, writers, and activists once again1 that technology be replacing human workers. Some imagine that the coming work-free world will be defined by2 . A few wealthy people will own all the capital, and the masses will struggle in an impoverished wasteland. A different and not mutually exclusive3 holds that the future will be a wasteland of a different sort, one 4 by purposelessness: Without jobs to give their lives 5 , people will simply become lazy and depressed. 6 , today’s unemployed don’t seem to be havinga great time. One Gallup poll found that 20 percent of Americans who have been unemployed for at least a year report having depression, double the rate for 7 Americans. Also, some research suggests that the 8 for rising rates of mortality, mental-health problems, and addicting 9 poorly-educated middle-aged people is shortage of well-paid jobs. Perhaps this is why many 10 the agonizing dullness of a jobless future. But it doesn’t 11 follow from findings like these that a world without work would be filled with unease. Such visions are based on the 12 of being unemployed in a society built on the concept of employment. In the 13 of work, a society designed with other ends in mind could 14 strikingly different circumstanced for the future of labor and leisure. Today, the 15 of work may be a bit overblown.“Many jobs are boring, degrading, unhealthy, and a waste of human potential,” says John Danaher, a lecturer at the National University of Ireland in Galway. These days, because leisure time is relatively 16 for most workers, people use their free time to counterbalance the intellectual and emotional 17 of their jobs. “When I come home from a hard day’s work, I often feel 18 ,” Danaher says,

下半软件评测师真题(案例分析题)

2016年下半年软件评测师真题(案例分析题)案例分析题 试题一(共15分) 阅读下列C程序,回答问题1至问题3,将解答填入答题纸的对应栏内。【C程序】 int count(int x,int z){ int y=0; while(x>0){//l if(x:=1)//2 y= 7//3 else{//4 Y=x+z+4; If(y=7 || y=21)//5,6 x= 1;//7 } X--;//8 }

retum y;//9 } 【问题1】(3分) 请针对上述C程序给出满足1006%DC(判定覆盖)所需的逻辑条件。【问题2】(7分) 请画出上述程序的控制流图,并计算其控制流图的环路复杂度V(G)。【问题3】(5分) 请给出问题2中控制流图的线性无关路径。 试题二(共20分) 阅读下列说明,回答问题1和问题2,将解答填入答题纸的对应栏内。 【说明】 某航空公司的会员卡分为普卡、银卡、金卡和白金卡4个级别,会员每次搭乘该航空公司航班均可能获得积分,积分规则如表2-1所示。此外,银卡及以上级别会员有额外积分奖励,奖励规则如表2-2所示。 2016年下半年软件评测师下午试卷第2页(共8页) ┏━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━┓

┃舱位┃舱位代码┃积分- ┃ ┣━━━━━━╋━━━━━━━━╋━━━━━━━━━━━━━┫ ┃┃ F ┃200%*K ┃┃┣━━━━━━━━╋━━━━━━━━━━━━━┫ ┃头等舱┃Z ┃150% *K ┃┃┣━━━━━━━━╋━━━━━━━━━━━━━┫ ┃┃ A ┃125%*K+ ┃┣━━━━━━╋━━━━━━━━╋━━━━━━━━━━━━━┫ ┃┃ C ┃150%*K ┃┃┣━━━━━━━━╋━━━━━━━━━━━━━┫ ┃公务舱┃D/I ┃125%*K ┃┃┣━━━━━━━━╋━━━━━━━━━━━━━┫ ┃┃┃┃ ┃┃R ┃I00%*K ┃ ┣━━━━━━╋━━━━━━━━╋━━━━━━━━━━━━━┫ ┃┃Y ┃125%*K ┃┃┣━━━━━━━━╋━━━━━━━━━━━━━┫

2017年考研英语一真题及答案

2017年考研英语一真题及答案 Section Ⅰ Use of English Directions:Read the following text.Choose the best word(s)for each numbered blank and mark A,B,C or D on the ANSWER SHEET.(10 points) Could a hug a day keep the doctor away? The answer may be a resounding "yes!"_____(1)helping you feel close and_____(2)to people you care about,it turns out that hugs can bring a_____(3)of health benefits to your body and mind.Believe it or not,a warm embrace might even help you_____(4)getting sick this winter. In a recent study_____(5)over 400 healthy adults,researchers from Carnegie Mellon University in Pennsylvania examined the effects of perceived social support and the receipt of hugs_____(6)the participants' susceptibility to developing the common cold after being_____(7)to the virus.People who perceived greater social support were less likely to come_____(8)with a cold, and the researchers_____(9)that the stress-reducing effects of hugging_____(10)about 32 percent of that beneficial effect._____(11)among those who got a cold,the ones who felt greater social support and received more frequent hugs had less severe_____(12). "Hugging protects people who are under stress from the_____(13)risk for colds that's usually_____(14)with stress,"notes Sheldon Cohen,a professor of psychology at Carnegie,Hugging"is a marker of intimacy and help_____(15)the feeling that others are there to help_____(16)difficulty." Some experts_____(17)the stress-reducing, health-related benefits of hugging to the release of oxytocin, often called"the bonding hormone"_____(18)it promotes attachment in relationships, including that between mothers and their newborn babies. Oxytocin is made primarily in the central lower part of the brain, and some of it is released into the bloodstream. But some of it_____(19)in the brain, where it_____(20)mood, behavior and physiology. 1. A.Besides B.Unlike C.Throughout D.Despite 2. A.equal B.restricted C.connected D.inferior 3. A.view B.Host C.lesson D.choice 4. A.avoid B.forget C.recall D.keep 5. A.collecting B.affecting C.guiding D.involving 6. A.on B.in C.at D.of 7. A.devoted B.attracted C.lost D.exposed 8. A.along B.across C.down D.out 9. A.imagined B.denied C.doubted D.calculated 10. A.served B.Restored C.explained D.required 11. A.Thus B.Still C.Rather D.Even 12. A.defeats B.symptoms C.errors D.tests 13. A.Highlighted B.increased C.controlled D.minimized 14. A.Presented B.equipped C.associated D.compared 15. A.assess B.Generate C.moderate D.record

相关主题
文本预览
相关文档 最新文档