【单选题】【消耗次数:1】
If a person _______ succeed, he must try his best.
will
is to
is going to
参考答案:
复制
纠错
相关题目
【单选题】 There is no doubt ____he will succeed in his business.
①  that
②  whether
③  what
④  if
【单选题】 ____ he tried his best , he still failed the examination.
①  Although
②  Even although
③  However
④  Because
【单选题】 _______ he tried his best, he still failed the examination.
①  Although
②  Even although
③  However
④  Because
【判断题】 ____Unless_____ they can get people in the organization to do what must he done, they will not succeed.
①  正确
②  错误
【单选题】 Little ___ that we were watching his every move, so he seemed to be going his own way in this business.
①  he realized
②  ?he didn’t realize
③  ?didn’t he realize
④  ?did he realize
【单选题】 _______ she tried her best, she didn’t succeed.
①  Though
②  When
③  If
④  After
【判断题】 P.S. put at the end of the letter means personal best.
①  正确
②  错误
【判断题】 判断线上的内容是否正确:____Unless_____ they can get people in the organization to do what must he done, they will not succeed.
①  正确
②  错误
【单选题】 ____ the water sports — sailing, rowing, diving and swimming, I like rowing best. ?
①  At all ?
②  Above all ?
③  Of all ?
④  After all?
【单选题】 -Johnson has promised us that he will help ?us out to his best ability. -I don’t buy it. In my opinion, ?he _______ so kind.
①  has been
②  is
③  was
④  is being
随机题目
【单选题】 有以下说明语句:struct Point{int x;int y;};则叙述正确的是()
①  正确的结构类型说明
②  正确的结构变量说明
③  错误的原因是结构中成员类型相同
④  无意义的说明
【单选题】 下列表达式的结果是()a=3*5,a=b=3*2
①  15
②  5
③  6
④  3
【单选题】 在C++中,函数原型不能标识()
①  函数的返回类型
②  函数参数的个数
③  函数参数类型
④  函数的功能
【单选题】 C++实现运行时的多态性是通过什么机制实现的()
①  重载函数
②  构造函数
③  析构函数
④  虚函数
【单选题】 在公有继承的情况下,基类的成员(私有的除外)在派生类中的访问权限()
①  受限制
②  保持不变
③  受保护
④  不受保护
【单选题】 有说明语句int b[4][5];void fun(int*,int n);调用函数的正确语句是()
①  fun(b,20);
②  fun(b[0],20);
③  fun(b[0][0],20);
④  fun(b,20);
【单选题】 已知int a[10]={0,1,2,3,4,5,6,7,8,9},*p=a;不能表示数组a中元素的式子是()
①  *a
②  *p
③  a
④  a[p-a]
【单选题】 任何复杂的程序,都是由()构成的。
①  分支结构、顺序结构、过程结构
②  循环结构、分支结构、过程结构
③  顺序结构、循环结构、分支结构
④  循环结构、分支结构
【单选题】 若有类模板声明:template classTclass{int k;public:Tclass(int);//……};以下正确的说明语句正确的是()
①  Tclass(double)t(10);
②  Tclassdoublet(10);
③  Tclass0.5t(10);
④  Tclass t(10);
【单选题】 以下程序的输出的结果是()。 int x=3; main( ) int i; for(i=1;i<x;i++)incre( );incre( ) staic int x=1; x*=x+1; printf( %d, x);
①  25
②  26
③  27
④  28