【单选题】【消耗次数:1】
A group of American soldiers were walking along the road in Irap when a bomb was _____, three of whom were killed.
set about
set out
set up
set off
参考答案:
复制
纠错
相关题目
【单选题】 He set up in business ____ his own and was very successful
①  in
②  of
③  on
④  by
【单选题】 We should set up special schools for the ______ people.
①  A.young
②  B.old
③  C.poor
④  D.disabled
【单选题】 Up to now we have ( )the goal we set at the very beginning.
①  assured
②  influenced
③  possessed
④  accomplished
【判断题】 执行命令“set date to american”,将设置美国日期(时间)格式
①  正确
②  错误
【多选题】 SET协议的目标是()。
①  防止数据被非法用户窃取,保证信息在互联网上的安全传输
②  提供一个开放式的标准,规范协议和消息的格式
③  解决多方认证问题,不但对客户的信用卡认证,还对在线商家认证,实现客户和商家、银行间的互相认证
④  保证上网交易的实时性、是所有的支付过程都是在线的
【单选题】 I shall never_________ the days when I first set foot in Beijing.
①  forgive
②  forecast
③  forbid
④  forget
【单选题】 5. The rescue team set out for the earth-stricken area _______ the constant aftershocks.
①  in spite
②  despite of
③  despite
④  but for
【单选题】 Williams proposal,()at a board meeting last week, was to set up a committee to review the marketing plan.
①  discuss 
②  discussing
③  discussed
④  to be discussed
【单选题】 在SET交易中,购买请求()。
①  由特卡人发生商户
②  由持卡人同时发往商户和收单行
③  由持卡人同时发生商户和发卡行
④  由持卡人同时发往商户和支付网关
【单选题】 The fox fell into the _____the hunter had set for it.
①  bush
②  trap
③  trick
④  circle
随机题目
【单选题】 设存在函数int min(int,int)返回两参数中较小值,若求15,26,47三者中最小值,下列表达式中错误的是( )
①  int m=min(min(15,26),min(15,47));
②  int m=min(15,26,47);
③  int m=min(15,min(47,26));
④  int m =min(min(47,26),16);
【单选题】 下列表示引用的方法中,( )是正确的。已知:int a=1000;
①  int
②  char
③  int z=1000;
④  float t=
【单选题】 设存在函数int max(int,int)返回两参数中较大值,若求22,59,70三者中最大值,下列表达式不正确的是( )
①  int m = max(22,max(59,70));
②  int m = max(max(22,59),70);
③  int m = max(22,59,70);
④  int m = max(59,max(22,70));
【单选题】 设存在整型变量int x,则下列句与其它三项含义不同的是( )
①  int* p=x;
②  int p=x;
③  int p=x;
④  int p=x;
【单选题】 设函数void swap(int,int)将交换两形参的值,如两整型变量int a=10;int b=15;则执行swap(a,b)后,a、b值分别为( )
①  10,10
②  10,15
③  15,10
④  15,15
【单选题】 在编译指令中,宏定义使用哪个指令( )
①  #include
②  #define
③  #if
④  #else
【单选题】 考虑下面的函数原型声明:void testDefaulParam(int a,int b=7,char z=*下面函数调用中,不合法的是( )。
①  testDefaulParam(5);
②  testDefaulParam(5,8);
③  testDefaulParam(5,#
④  testDefaulParam(0,0,*
【单选题】 函数调用func((exp1,exp2),(exp3,exp4,exp5))中所含实参的个数为()
①  1
②  2
③  4
④  5
【单选题】 类的私有成员可在何处被访问( )
①  本类的成员函数中
②  本类及子类的成员函数中
③  通过对象名在任何位置
④  不可访问
【单选题】 下列关于析构函数描述正确的是( )
①  可以重载
②  函数体中必须有delete语句
③  返回类型必须是void类型
④  不能指定返回类型