【判断题】【消耗次数:1】
A: Sir, no smoking here. B: Sure, I don’t smoke.
正确
错误
参考答案:
复制
纠错
相关题目
【单选题】 You are not [填空] to smoke here.
①  allowing
②  permit
③  allowed
④  allowance
【单选题】 You [填空] smoke here.
①  mustnt
②  cant
③  canot
④  dont
【单选题】 Middle school students aren’t ______ to smoke.
①  A.ordered
②  B.prepared
③  C.allowed
④  D.made
【判断题】 Don’t put your dirty clothes here. Put them away.
①  正确
②  错误
【判断题】 A: Excuse me, can I smoke here? B: No.
①  正确
②  错误
【单选题】 I ________ here since I moved here.
①  will work
②  worked
③  work
④  have been working
【单选题】 I_______here since I moved here.
①  will work
②  worked
③  work
④  have been working
【单选题】 I was really __________ to see her here.
①  surprised
②  surprising
【判断题】 A: May I have your order now? B: No, I don’t have a choice of meat.
①  正确
②  错误
【单选题】 I don’ t think it’ s important, _____?
①  doesn’ t
②  is it
③  do I
④  isn’ t
随机题目
【单选题】 作用域分辨符可以用来限定即将访问成员所在类的名称,其符号是()。
①  ::
②  ?:
③ 
④  \
【单选题】 C++控制台程序中必须有的函数是()。
①  #include
②  iostream.h
③  main
④  cout cin
【单选题】 在一个函数中,要求通过函数来实现一种不太复杂的功能,并且要求加快执行速度,选用()合适。
①  内联函数
②  重载函数
③  递归函数
④  嵌套调用
【单选题】 已知下面的class层次结构,其中每一个class都定义有一个defaultconstructor和一个virtualdestructor:classX{...};classA{...};classB:publicA{...};classC:publicB{...};classD:publicX,publicC{...};下面哪一个dynamic_cast会失败?()
①  D*pd=newD;A*pa=dynamic_cast(pd)
②  A*pa=newC;C*pc=dynamic_cast(pa)
③  B*pb=newB;D*pd=dynamic_cast(pb)
④  A*pa=newD;X*px=dynamic_cast(pa)
【单选题】 执行下列语句后,x和y的值是() int x,y; x=y=1; ++x || ++y;
①  1和1
②  1和2
③  2和1
④  2和2
【单选题】 ()使一个函数可以定义为对许多数据类型完成同一任务。
①  函数模板
②  递归函数
③  模板函数
④  重载函数
【单选题】 设有类A的对象Aobject,若用友员函数重载后置自减表达式,那么Aobject--被编译器解释为()
①  Aobject.operator--()
②  operator--(Aobject,0)
③  --(Aobject,0)
【单选题】 有语句typedef double funt(double);funt fun13,*pfun;则以下正确的赋值语句是()
①  pfun=fun13;
②  *pfun=fun13;
③  pfun=funt;
④  *pfun=funt;
【单选题】 C语言的编译器对宏命令的处理是:()
①  在程序运行时进行的
②  在程序连接时进行的
③  和C程序中的其他语句同时进行编译的
④  在对源程序中其他成分正式编译之前进行的
【单选题】 设有说明语句:char s[]=ef\0\123\\\n89;sizeof(s)的值是()
①  9
②  2
③  11
④  15