19.手动安装PerL模块是,以下哪个操作正确?
A. bash# make
bash# make test
bash# perl Makefile.PL
bash# make install
B. bash# make install
bash# make
bash# make test
bash# perl Makefile.PL
C. bash# make test
bash# make
bash# perl Makefile.PL
bash# make install
D. bash# perl Makefile.PL
bash# make
bash# make test
bash# make install
答案:( )
20.You want to use the Web to let __(224)__ users or your customers look __(225)__ corporate information. But you want to keep installation at the user end __(226)__ and you don't want just __(227)__ to get __(228)__ your databases.
That may be where an application server enters the picture. For more user machine
independent, these software packages, typically written in the __(229)__ programming language for use on Windows __(230)__ -based systems, act as go-betweens __(231)__ browser-equipped end users to the databases that __(232)__ the information they need to __(233)__.
(224): A. informer B. internal C. inside D. outside
(225): A. at B. by C. in D. out
(226): A. simple B. simply C. single D. singly
(227): A. any B. anyone C. anything D. anywhere
(228): A. into B. off C. onto D. out
(229): A. C B. C++ C. SQL D. JAVA
(230): A. NC B. NT C. PC D. PT
(231): A. link B. linkage C. linking D. links
(232): A. held B. helt C. hold D. holt
(233): A. access B. accessing C. assert D. asserting
答案:( )
三、 简答题(每题4,共5道)
1. 你认为一个优秀的测试工程师应该具备哪些素质?
2. 软件开发模型分哪几种?
3. 软件生命周期分哪几个阶段?
4. 请描述软件测试活动的生命周期。
5. 画出软件测试技术图。
四、 设计题(每题5,共4道)
1.画出下列伪码程序的程序流程图。
START
IF m THEN
WHILE n DO
A
B
END DO
ELSE
BLOCK
C
D
END BLOCK
END IF
STOP
4.英译汉
Security
Security functions will be moved from software to hardware, where they’ re more tamper-proof. In September, Intel announced that it would work with VeriSign Inc. to implement in hardware VeriSign’s digital certificate technology for notebook computers that use Intel’s Banias processors. Users then won’t have to install vulnerable digital certificate software.
Smart cards that hold passwords and encryption keys, used with personal identification numbers, will provide another level of authentication beyond simple keyed-in passwords. Further out, portables will be fitted with biometric devices such as fingerprint or retina readers.
[[i] Last edited by dj02304 on 2005-7-19 at 14:20 [/i]]作者: chenxi8320 时间: 2005-7-8 13:55
请问什么时候公布答案啊??作者: dj02304 时间: 2005-7-8 18:08
公布也要在有人回答以后啊!
10.在数据库的如上图两个表中,若雇员信息表的主键是雇员号,部门信息表的主键是部门号。在部门信息表中,哪一行可以被删除?
A.部门号='01'的行
B.部门号='02'的行
C.部门号='03'的行
D.部门号='04'的行
答案:(C)
11.若用如下的SQL语句创建了一个表S:
CREATE TABLE S(S# CHAR(6)NOT NULL,
SNAME CHAR(8)NOT NULL,SEX CHAR(2),AGE INTEGER)
今向S表插入如下行时,哪一行可以被插入?
A.('991001','李明芳',女,'23')
B.('990746',"张为',NULL,NULL)
C.(NULL,'陈道一','男',32)
D.('992345',NULL,'女',25)
答案:(B)
12.如果互连的局域网高层分别采用TCP/IP协议与SPX/IPX协议,那么我们可以选择的互连设备应该是
A.中继器
B.网桥
C.网卡
D.路由器
答案:(D)
13.通常可分为白盒测试和黑盒测试。白盒测试是根据程序的( )来设计测试用例,黑盒测试是根据软件的规格说明来设计测试用例。
A.功能
B.性能
C.内部逻辑
D.内部数据
答案:(C)
14.常用的黑盒测试方法有边值分析、等价类划分、错误猜测、因果图等。其中( )经常与其它方法结合起来使用。软件测试的步骤主要有单元测试、集成测试和确认测试。
A.边值分析
B.等价类划分
C.错误猜测
D.因果图
答案:(B)
15.LINUX下,解压缩文件的命令为?
A. tar zxvf 文件名
B. COPY 文件名
C. CAT 文件名
D. VI 文件名
答案:(A)
16.从下列关于软件测试的叙述中,选出5条正确的叙述。
(1) 用黑盒法测试时,测试用例是根据程序内部逻辑设计的。
(2) 尽量用公共过程或子程序去代替重复的代码段。
(3) 测试是为了验证该软件已正确地实现了用户的要求。
(4) 对于连锁型分支结构,若有n个判定语句,则有2n条路径。
(5) 尽量采用复合的条件测试,以避免嵌套的分支结构。
(6) GOTO语句概念简单,使用方便,在某些情况下,保留GOTO语句反能使写出的程序更加简洁。
(7) 发现错误多的程序模块,残留在模块中的错误也多。
(8) 黑盒测试方法中最有效的是因果图法。
(9) 在做程序的单元测试时,桩(存根)模块比驱动模块容易编写。
(10) 程序效率的提高主要应通过选择高效的算法来实现。
A.1.3.4.5.9
B.2.4.6.7.10
C.4.5.6.7.10
D.1.2.3.8.9
答案:(C)
17.( )方法根据输出对输入的依赖关系设计测试用例。
A.路径测试
B.等价类
C.因果图
D.归纳测试
答案:(C)
18.在安装Bugzilla过程中,其中异步需要在BUGZILLA的目录内运行checksetup.pl,请以下那个命令正确?
A. checksetup.pl
B. make checksetup.pl
C. ./ checksetup.pl
D. cat checksetup.pl
答案:(A)
19.手动安装PerL模块是,以下哪个操作正确?
A. bash# make
bash# make test
bash# perl Makefile.PL
bash# make install
B. bash# make install
bash# make
bash# make test
bash# perl Makefile.PL
C. bash# make test
bash# make
bash# perl Makefile.PL
bash# make install
D. bash# perl Makefile.PL
bash# make
bash# make test
bash# make install
答案:(D)
20.You want to use the Web to let __(224)__ users or your customers look __(225)__ corporate information. But you want to keep installation at the user end __(226)__ and you don't want just __(227)__ to get __(228)__ your databases.
That may be where an application server enters the picture. For more user machine
independent, these software packages, typically written in the __(229)__ programming language for use on Windows __(230)__ -based systems, act as go-betweens __(231)__ browser-equipped end users to the databases that __(232)__ the information they need to __(233)__.
(224): A. informer B. internal C. inside D. outside
(225): A. at B. by C. in D. out
(226): A. simple B. simply C. single D. singly
(227): A. any B. anyone C. anything D. anywhere
(228): A. into B. off C. onto D. out
(229): A. C B. C++ C. SQL D. JAVA
(230): A. NC B. NT C. PC D. PT
(231): A. link B. linkage C. linking D. links
(232): A. held B. helt C. hold D. holt
(233): A. access B. accessing C. assert D. asserting
答案:(BAABA,DBCCA )
剩下的需要图片粘贴
大家下载看吧
[[i] Last edited by dj02304 on 2005-7-13 at 17:19 [/i]]作者: dj02304 时间: 2005-7-12 10:28
大家有新的答案也要传上来啊
不要敝帚自珍啊!作者: jackei 时间: 2005-7-12 10:31
楼主,你的
5.现在向银行存款,年利率为i,若希望在n年后从银行得到F元,现在应该存入的钱数为( )。
A.i /(1+ F)n
B.F/(1+i n)
C.F/in
D.F/(1+i)n
答案:( D)
[[i] Last edited by takiro on 2005-7-13 at 17:05 [/i]]作者: jackei 时间: 2005-7-13 15:18
[quote]Originally posted by [i]dj02304[/i] at 2005-7-13 13:54:
jackei:你所说的每次利息结算,滚动计算,好象不是定期的吧?那样算,虽然是利滚利,但是利息不多啊
在算这个题目的时候,我们是不是也应该考虑到显示中的呢?定期存款的利息远远大于不定期的,就算是不定期的 ... [/quote]
19.手动安装PerL模块是,以下哪个操作正确?
A. bash# make
bash# make test
bash# perl Makefile.PL
bash# make install
B. bash# make install
bash# make
bash# make test
bash# perl Makefile.PL
C. bash# make test
bash# make
bash# perl Makefile.PL
bash# make install
D. bash# perl Makefile.PL
bash# make
bash# make test
bash# make install
答案:(D )
20.You want to use the Web to let __(224)__ users or your customers look __(225)__ corporate information. But you want to keep installation at the user end __(226)__ and you don't want just __(227)__ to get __(228)__ your databases.
That may be where an application server enters the picture. For more user machine
independent, these software packages, typically written in the __(229)__ programming language for use on Windows __(230)__ -based systems, act as go-betweens __(231)__ browser-equipped end users to the databases that __(232)__ the information they need to __(233)__.
(224): A. informer B. internal C. inside D. outside
(225): A. at B. by C. in D. out
(226): A. simple B. simply C. single D. singly
(227): A. any B. anyone C. anything D. anywhere
(228): A. into B. off C. onto D. out
(229): A. C B. C++ C. SQL D. JAVA
(230): A. NC B. NT C. PC D. PT
(231): A. link B. linkage C. linking D. links
(232): A. held B. helt C. hold D. holt
(233): A. access B. accessing C. assert D. asserting
[/color][/font]作者: sales208 时间: 2006-7-29 00:18
在G.J.Myers的经典著作《软件测试之艺术》(The Art of Software Testing)中,给出了测试的定义:“程序测试是为了发现错误而执行程序的过程”。这个定义,被业界所认可,经常被引用。除此之外,G.J.Myers还给出了与测试相关的三个重要观点,那就是:
测试是为了证明程序有错,而不是证明程序无错误;
一个好的测试用例是在于它能发现至今未发现的错误;
一个成功的测试是发现了至今未发现的错误的测试。
你们觉得选择题第2题的答案是C么?~为什么我觉得是B?
2.软件测试的目的: ()
A. 避免软件开发中出现的错误
B. 发现软件开发中出现的错误
C. 尽可能发现并排除软件中潜藏的错误,提高软件的可靠性
D. 修改软件中出现的错误
答案: (C ) 我觉得B对
排除软件中潜藏的错误是测试人员可以知道的,但是完成是由开发人员做的啊。。这个问题的现实在于,国内可能很多开发和测试都是由开发人员来做的么?测试的最终目的当然是排除错误和提高软件可靠性,但是其直接目的应该是发现软件执行过程中的错误吧??
不好意思我是新手,不知道说的对不对:)
还有关于linux系统的操作的问题,这个
15.LINUX下,解压缩文件的命令为?
A. tar zxvf 文件名
B. COPY 文件名
C. CAT 文件名
D. VI 文件名
答案:(C )
很明显,linux里面解压缩的命令是tar啊~呵呵后面zxvf是参数,怎么会是C呢~
26楼做的有好些都是不对的,例如关于单元测试的,单元测试是测试的基础环节,能发现80%的软件缺陷。
19.手动安装PerL模块是,以下哪个操作正确?
A. bash# make
bash# make test
bash# perl Makefile.PL
bash# make install
B. bash# make install
bash# make
bash# make test
bash# perl Makefile.PL
C. bash# make test
bash# make
bash# perl Makefile.PL
bash# make install
D. bash# perl Makefile.PL
bash# make
bash# make test
bash# make install