【单选题】【消耗次数:1】
5. Without your help, I couldn’t ______ the details ______.
work…at
work…out
work…on
work…up
参考答案:
复制
纠错
相关题目
【单选题】 _______ , I will help you with your work.
①  If I am possible
②  If it possible
③  If possible
④  Possible
【单选题】 I don’t think you can work out the maths problem ___ her help.
①  since
②  unless
③  with
④  without
【单选题】 The students can ’t finish the work ______ the teacher’s help.
①  A. with
②  B.for
③  C.without
④  D.on
【单选题】 None of us can work out the puzzle, _____ we?
①  can
②  can’ t
③  do
④  don’ t
【单选题】 They can’t leave until they _________ their work .
①  did
②  are doing
③  have done
④  his done
【单选题】 They can’t leave until they _______ their work .
①  did
②  are doing
③  have done
④  his done
【单选题】 I followed her _______ but I still couldnt work out how to use the sewing machine.
①  description
②  introduction
③  instructions
④  comments
【多选题】 No matter how ______ the problem is , we will work it out.
①  A.easy
②  B.difficult
③  C.challenging
④  D.hard
【单选题】 We could ask someone to do the work privately without it __________.
①  know
②  be known
③  being known
④  to be known
【单选题】 5. His father began to work ____he was seven years old.
①  as old as
②  as early as
③  as soon as
④  as much as
随机题目
【单选题】 x0 || y==5的相反表达式为()
①  x=0 || y!=5
②  x=0 y!=5
③  x0 || y!=5
④  x0 y==5
【单选题】 函数重载是指()
①  两个或两个以上的函数取相同的函数名,但形参的个数或类型不同
②  两个以上的函数取相同的名字和具有相同的参数个数,但形参的类型可以不同
③  两个以上的函数名字不同,但形参的个数或类型相同
④  两个以上的函数取相同的函数名,并且函数的返回类型相同
【单选题】 以下关于函数模板叙述正确的是()
①  函数模板也是一个具体类型的函数
②  函数模板的类型参数与函数的参数是同一个概念
③  通过使用不同的类型参数,函数模板可以生成不同类型的函数
④  用函数模板定义的函数没有类型
【单选题】 为了提高程序的运行速度,可将不太复杂的功能用函数实现,此函数应选择()。
①  内联函数
②  重载函数
③  递归函数
④  模板
【单选题】 设”int a=15,b=26;”,则”cout(a,b);”的输出结果是()
①  15
②  26,15
③  15,26
④  26
【单选题】 在下面循环语句中循环体执行的次数为() int i=0; do i++; while(i*i
①  4
②  3
③  5
④  2
【单选题】 若定义了函数 double *function(), 则函数function的返回值为()。
①  实数型
②  实数的地址C.指向函数的指针
③  函数的地址
【单选题】 下列的符号常量定义中,错误的定义是()
①  const M=10;
②  const int M=20;
③  const char ch;
④  const bool mark=true;
【单选题】 由C++源程序文件编译而成的目标文件的默认扩展名为()
①  exe
②  obj
③  lik
【单选题】 以下函数的返回结果是() int function(char *x) { char *p=x; while(*p++); return(p-x-1); }
①  求字符串的长度
②  将字符串x连接到字符串p后面
③  将字符串x复制到字符串p中
④  将字符串x反向存放