51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 13214|回复: 16
打印 上一主题 下一主题

[求助] 某公司部分笔试题,仅供参考!

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2004-6-29 13:03:44 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
以下是某公司一次笔试中出的题目,是部分专业题目,可以和大家分享一下,希望对大家有用。
(要求以英文做答)
Q:When speaking of software products, how do you define the term“quality”.
Q:What is the role of software debelopers and quality assuranle engineers in ensuring the quality of the product? How are other functional areas important to developing a quality product?
Q:What is cyclomatic complexity?
Q:What are black-box texing and white-box texting?
Q:The following function divides a by b and out put to c,returns -1 as error.
    Int divide (int a,int b,int c)
    List you test cases in a black-box testing.
  
Q:  Int a ctivity(int nage,bool b male)
    {if (nage<60)
       return zoo;
       else if(bmale)
        return golf;
        else return movie;
    }

Q:The following function tests whether the three numbers can be the lengths of the three sides of a triangle.
Bool triangle(float a,float b,float c)
List you test cases in a black-box testing.
以上题目如有单词拼写错误还请谅解:p
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏

该用户从未签到

17#
发表于 2006-8-29 22:19:33 | 只看该作者
E不好啊
回复 支持 反对

使用道具 举报

该用户从未签到

16#
发表于 2005-4-30 23:30:51 | 只看该作者

o

看到上面的英文测试题,就知道是一个很专业的公司.
要是那位仁兄有幸面试成功,一定要传授一下好公司的软件测试规范!!!
谢谢!
回复 支持 反对

使用道具 举报

该用户从未签到

15#
发表于 2005-4-30 17:27:38 | 只看该作者

e

对,做什么都要对英文重视
无论是做测试,还是做其他什么
回复 支持 反对

使用道具 举报

该用户从未签到

14#
发表于 2005-4-1 15:18:50 | 只看该作者
看来做测试一定要狂补英文才行啊!:(
回复 支持 反对

使用道具 举报

该用户从未签到

13#
发表于 2005-3-28 15:34:16 | 只看该作者
如果面试的时候我只能用中文回答了
回复 支持 反对

使用道具 举报

该用户从未签到

12#
发表于 2005-2-27 14:00:16 | 只看该作者

楼主的面试题目!

听一个朋友讲过,好像是汉略信息公司的题目!

   题目挺好的!!
回复 支持 反对

使用道具 举报

该用户从未签到

11#
发表于 2005-2-25 04:14:36 | 只看该作者
Quality: meet customer requirements.

Quality assuranle engineers: use a set of activities designed to ensure the development process to meet the requirements.

Black box testing: a testing without knowledge of the internal working of the item being tested.

white box testing: use specific knowledge of programming code to examine outputs.
回复 支持 反对

使用道具 举报

该用户从未签到

10#
发表于 2005-1-31 17:01:59 | 只看该作者
Quality is defined: Meeting customer requirements
偶们测试中的答案^_^
回复 支持 反对

使用道具 举报

该用户从未签到

9#
发表于 2005-1-31 11:09:24 | 只看该作者
很难回答的,就是用中文都不好说。最简单的一个,什么是白盒测试,什么是黑盒测试,就很难回答。至于怎么定义“质量”就难了,仁者见仁,智者见智,如果对方有陷入为主的看法,就危险了。
回复 支持 反对

使用道具 举报

该用户从未签到

8#
发表于 2005-1-11 14:07:20 | 只看该作者
就算看懂了,也不会用E文回答,要补习E文了
回复 支持 反对

使用道具 举报

该用户从未签到

7#
发表于 2005-1-5 12:47:21 | 只看该作者
What is cyclomatic complexity?
圈复杂度是什么?
回复 支持 反对

使用道具 举报

该用户从未签到

6#
发表于 2004-7-10 14:29:31 | 只看该作者
看完后感觉能回答上来的不多啊,谁来给解答一下呀~~,觉得这些问题还是挺有意义的
回复 支持 反对

使用道具 举报

该用户从未签到

5#
发表于 2004-7-5 11:56:24 | 只看该作者

不正确的请大家指正

Q:When speaking of software products, how do you define the term“quality”.
问:当说到软件产品的时候,你如何定义术语“质量”
Q:What is the role of software debelopers and quality assuranle engineers in ensuring the quality of the product? How are other functional areas important to developing a quality product?
问:在确定产品的质量方面,什么是软件开发工程师和质量保证工程师要做的?其他的功能对如何发展产品质量有什么重要?
Q:What is cyclomatic complexity?
问:(这是一个复杂度模型吧)
Q:What are black-box texing and white-box texting?
问:什么是黑盒测试和白盒测试?
Q:The following function divides a by b and out put to c,returns -1 as error.
    Int divide (int a,int b,int c)
    List you test cases in a black-box testing.
问:对 Int divide (int a,int b,int c)函数写出黑盒测试用例
Q:Int a ctivity(int nage,bool bmale)
    {if (nage<60)
       return zoo;
       else if(bmale)
        return golf;
        else return movie;
    }

Q:The following function tests whether the three numbers can be the lengths of the three sides of a triangle.
Bool triangle(float a,float b,float c)
List you test cases in a black-box testing.
问:也是让写黑盒测试用例,是一个三个数是否是三角形的三条边的测试
回复 支持 反对

使用道具 举报

  • TA的每日心情
    奋斗
    2018-2-28 18:04
  • 签到天数: 40 天

    连续签到: 1 天

    [LV.5]测试团长

    4#
    发表于 2004-6-30 13:11:37 | 只看该作者
    能看懂,但是有些不会用英文回答,需要补习英语了
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    3#
     楼主| 发表于 2004-6-29 15:35:03 | 只看该作者

    ~~~

    哈哈,没办法啊,我就是这样因为看不懂才有时间抄回来和大家分享的啊,我能看懂的也只能用中文回答了,但是当时是要求用E文的啊:p这也是我的经历啊!还有很大一部分题目是测IQ的呢!呵呵,不过我没记下来。
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    2#
    发表于 2004-6-29 15:23:47 | 只看该作者
    E文不好,看不懂:|
    回复 支持 反对

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-11-13 15:57 , Processed in 0.084963 second(s), 28 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表