考题
对于路由区编码RAI,下列哪个描述是正确的:()
A.RAI=MCC+MNC+LAC;B.RAI=MCC+MNC+LAI;C.RAI=MCC+MNC+RAC;D.RAI=MCC+MNC+LAC+RAC。
考题
China held the 22nd ()APEC economic leader’s meeting in Beijing in 2014.
A、carelessB、hardC、informal
考题
指出定义GPRS路由区Routing Area Identity正确完整的一组参数:()
A.RAI=MCC+MNC+LAC+RACB.RAI=MCC+MNC+LACC.RAI=MCC+MNC+RACD.RAI=MCC+MNC+CI+RAC
考题
We wrote down the direction (方向) of travel and sent the __________ back to base.
A、informationB、informC、formulaD、informal
考题
YouaretestingacomponentthatserializestheMeetingclassinstancessothattheycanbesavedtothefilesystem.TheMeetingclasshasthefollowingdefinition:Thecomponentcontainsaprocedurewiththefollowingcodesegment.MeetingmyMeeting=newMeeting(Goals);myMeeting.roomNumber=1100;string[]attendees=newstring[2]{John,Mary};myMeeting.invitees=attendees;XmlSerializerxs=newXmlSerializer(typeof(Meeting));StreamWriterwriter=newStreamWriter(@C:\Meeting.xml);xs.Serialize(writer,myMeeting);writer.Close();YouneedtoidentifytheXMLblockthatiswrittentotheC:\Meeting.xmlfileasaresultofrunningthisprocedure.WhichXMLblockrepresentsthecontentthatwillbewrittentotheC:\Meeting.xmlfile?()
考题
当需要删除某个序列seq_customer_id,可以使用如下()方式。
A.DROP SEQ_CUSTOMER_IDB.DELETE SEQUENCE SEQ_CUSTOMER_IDC.DROP SEQUENCE SEQ_CUSTOMER_IDD.DELETE SEQ_CUSTOMER_ID
考题
.Why do Americans like to go to fast food restaurants?A.It is because fast food restaurants are fast,informal,and inexpensive.B.It is because people can easily find fast food restaurants.C.It is because people like to eat hamburgers.D.It is because fast food restaurants sell nearly every kind of food.
考题
【说明】下图是某商场购物系统的一个类图,图中属性和方法前的"+"、"#"和"- " 分别表示公有成员、保护成员和私有成员。其中:
(1) 类Manager重新实现了类Customer的方法 calMoney( );(2) 方法calMoney( ),根据每位顾客的购买情况(buyNum)、浏览商品的情况(scanNum)计算商品的热度。(3)类Admin中的方法statMoney()中首先调用了该类的方法load( ),获取顾客列表,然后调用了类Customer中的方法calMoney( )。现拟采用面向对象的方法进行测试。 【问题1】(4分)图4-1 所示的类图中,类Manager和类Customer之间是什么关系?该关系对测试的影响是什么?【问题2】(6分)(1) 类Manager重新实现了类Customer的方法calMoney( ),这是面向对象的什么机制?是否需要重新测试该方法?(2) 类Manager中的方法getMoney ( )继承了其父类 Customer 的方法getMoney ( ),是否需要重新测试该方法?
【问题3】(6分)(1)请结合题干中说明的描述,给出测试类Customer方法calMoney()时的测试序列;(2)请给出类图中各个类的测试顺序。【问题4】(4分)从面向对象多态特性考虑,测试方法statMoney( )时应注意什么?
考题
阅读下列说明,回答问题1至问题4,将解答填入答题纸的对应栏内。【说明】下图是某商场购物系统的一个类图,图中属性和方法前的"+"、"#"和"- " 分别表示公有成员、保护成员和私有成员。其中:
(1) 类Manager重新实现了类Customer的方法 calMoney( );(2) 方法calMoney( ),根据每位顾客的购买情况(buyNum)、浏览商品的情况(scanNum)计算商品的热度。(3)类Admin中的方法statMoney()中首先调用了该类的方法load( ),获取顾客列表,然后调用了类Customer中的方法calMoney( )。现拟采用面向对象的方法进行测试。 【问题1】(4分)图4-1 所示的类图中,类Manager和类Customer之间是什么关系?该关系对测试的影响是什么?【问题2】(6分)(1) 类Manager重新实现了类Customer的方法calMoney( ),这是面向对象的什么机制?是否需要重新测试该方法?(2) 类Manager中的方法getMoney ( )继承了其父类 Customer 的方法getMoney ( ),是否需要重新测试该方法?【问题3】(6分)(1)请结合题干中说明的描述,给出测试类Customer方法calMoney()时的测试序列;(2)请给出类图中各个类的测试顺序。【问题4】(4分)从面向对象多态特性考虑,测试方法statMoney( )时应注意什么?
考题
已知基类Employee只有一个构造函数,其定义如下: Employee::Employee(int n):id(n){ } Manager是Employee的派生类,则下列对Manager的构造函数的定义中,正确的是?A.Manager::Manager(int n):id(n){}B.Manager::Manager(int n){id=n;}C.Manager::Manager(int n):Employee(n){}D.Manager::Manager(int n){Employee(n);}