软件测试员 发表于 2009-1-7 10:55:05

测试问题

QTP在回放过程中出现 timeout 时,脚本将可能出现以下哪几种情况:
1:弹出警告
2:继续运行
3:自动退出
4:停止运行并给出错误信息

软件测试员 发表于 2009-1-7 11:14:11

测试问题

在以下对QTP的Action的描述中,正确的是()。
1:QTP中默认的Action1能够被其它脚本调用
2:创建拷贝的Action可以被共享
3:创建一个新的Action可以设置被共享
4:

软件测试员 发表于 2009-1-7 11:21:17

测试 问题

在以下对QTP的Action的描述中,正确的是()。
1:QTP中默认的Action1能够被其它脚本调用
2:创建拷贝的Action可以被共享
3:创建一个新的Action可以设置被共享
4:调用一个已存在的Action可以被共享

软件测试员 发表于 2009-1-7 11:25:58

测试问题

QTP为了获取对象的属性,提供了三种操作方式,其中错误的是()
1:GetRoProperty
2:GetRoProperties
3:GetToProperties
4:GetToProperty

软件测试员 发表于 2009-1-7 11:52:17

测试问题

What is first stage of ghe losd testing process 是什么意思(测试方面)答案选择几()
1:Create the Scenario
2:Plan the Load Test
3:Execute the Scenario
4:Create VuGen Scripts

软件测试员 发表于 2009-1-7 11:58:15

测试问题

What is the first indication of a performance problem 是什么意思(测试方面) 答案选择几 ()
1: The netword delay time is above 15ms
2: The DNS is not resolving the machine name
3: The Web servers available memory drops below 1GB
4: The end user experiences higher than expected response times

软件测试员 发表于 2009-1-7 12:02:12

测试问题

Available performance reports include 什么意思(测试方面) 选择几 ()
1: Detailed Summary
2: Detail Transaction
3: Failed Transactions
4: All of above

软件测试员 发表于 2009-1-7 12:22:27

测试问题

import java .io.*;
piblic class Test{
piblic static void main(String[] args) throws IOException,FileNotFoundException{
            FileInputSrteam in=new FileInputStream("house.gif");
          FileOutputStream out=new FileOutputStream("myhouse.gif");
          intc;
          while((c=in.read())!=-1){
          out.write(c);
}
         in.close();
         out.close();


}
}
关于以上的代码,描述正确的两项是 ()(选择二项)
1:Throws IOException, FileNotFoundException 可以省略
2:该代码实现了文件的复制
3:in.close();用来关闭已经打开的流
4:编译出错,文件为打开,无法读取字节
页: [1]
查看完整版本: 测试问题