Ask Mr.Brown, or any other person (). A、that are likely to knowB、which are likely to knowC、that is likely to knowD、which is likely to know

Ask Mr.Brown, or any other person ().

A、that are likely to know

B、which are likely to know

C、that is likely to know

D、which is likely to know


相关考题:

The ability to tolerate pain varies ______ person ______ person. (A) between … and(B) both … and(C) from … to(D) of … to

We don’t have ______ fruit in the house.Let me buy ______.A、any, anyB、any, someC、a little, anyD、some, any

There are ______ books in your bag. But there aren’t ______ pens in it. A、some, someB、any ,someC、some, anyD、any,any

The family_____at the lunch table when someone came to tell them what had happened at_____.A.were sitting;Mr.BrownB.were sitting;Mr.Brown’SC.was sitting;Mr.BrownD.was sitting;Mr.Brown’s

标准IP访问表的基本格式为:access-list[listnumber][permit|deny][host/any][sourceaddress][wildcard-ask][log],其中wi1dcardmask表示()。 A.源地址B.表号范围C.通配符屏蔽码D.子网掩码

Mr.Brown,and not I,________chosen to be the representative of the class.A.isB.amC.areD.have been

针对下列程序段,需要( )个测试用例才可以满足语句覆盖的要求。switch(value){case 0:other=30;break;case 1:other=50;break;case 2:other=300;case 3:other=other/value;break;default:other=other*value;}A.2B.3C.4D.5

Person类可能的拷贝构造函数格式为:A.Person(){}B.Person(Person *p){}C.Person(Person p){}D.Person(Person p){}

1、针对下列程序段,需要()个测试用例才可以满足语句覆盖的要求。 switch (value ) { case 0: other = 30; break; case 1: other = 50; break; case 2: other = 300; case 3: other = other/value; break; default: other = other * value; }A.2B.3C.4D.5

【计算题】(6-9)定义Person类(属性有姓名,年龄),完成如下任务: (1)在Test类中定义方法Boolean contains(Person[]per,Person temp),该方法判断Person数组是否有Person对象temp,如果数组中存在与per相同的Person对象返回boolean; (2)定义showPerson(Person[] per)输出Person对象数组所有元素; (3)对上面定义的方法进行测试。