【单选题】【消耗次数:1】
Now that we’ve ____, can we come to a decision?
thought over
thought of
thought through
thought about
参考答案:
复制
纠错
相关题目
【单选题】 We agreed to accept ____ they thought was the best guide.
①  whatever
②  whomever
③  whichever
④  whoever
【单选题】 We all thought ______ pity that you were unable to attend our meeting.
①  that
②  which
③  this
④  it
【单选题】 None of us expected the chairman to _____ at the party. We thought he was still in hospital.
①  turn in
②  turn over
③  turn up
④  turn down
【单选题】 He thought that _____.
①  the effort doing the job was not worth.
②  the effort was not worth in doing the job.
③  it was not worth the effort doing the job.
④  it was not worth the effort by doing the job.
【单选题】 No one thought that John’s suggestion was worth ____.?
①  ?to consider ?
②  considering ?
③  to be considered ?
④  of consideration?
【单选题】 Our civilization cannot be thought of as ____ in a short period of time.
①  to have been created
②  to be created
③  having been created
④  being created
【单选题】 They thought I was a smuggler. What is the meaning of the word smuggler?( )
①  小偷
②  咨询师
③  走私犯
④  警察
【单选题】 Our civilization cannot be thought of as _____in a short period of time.
①  to have been created
②  to be created
③  having been created
④  being created
【单选题】 A: I thought you were working until 6:30. B: [填空], but we finished our meeting at 5:30 and were let go.
①  I tried to
②  I hoped so
③  Id love to
④  I was supposed to
【判断题】 On the one hand, I want to sell the house, but on other hand I can’t? bear the thought of moving.
①  正确
②  错误
随机题目
【单选题】 X是一个类,对于该类而言,下列哪种函数中没有this指针()
①  非静态成员函数
②  析构函数
③  友元函数
④  虚函数
【单选题】 作用域分辨符可以用来限定即将访问成员所在类的名称,其符号是()。
①  ::
②  ?:
③ 
④  \
【单选题】 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程序中的其他语句同时进行编译的
④  在对源程序中其他成分正式编译之前进行的