【单选题】【消耗次数:1】
He unbuttoned his shirt to _______ a big scar on his chest.
adapt
react
review
reveal
参考答案:
复制
纠错
相关题目
【单选题】 He asked his neighbour to ________ his house.
①  keep an eye on
②  keep their eyes on
③  keep their eyes open
④  keep them eyes open
【判断题】 His government insisited that he stay until he finished his degree.
①  正确
②  错误
【单选题】 He was _____ his late twenties when he found his first job.
①  in
②  after
③  after
④  from
【单选题】 He put all his things [] his suitcase.
①  in
②  into
【单选题】 He is ____, but his wife is _____.?
①  awake…asleep ?
②  awake…sleep ?
③  waking…asleep ?
④  wake…asleep ?
【单选题】 19. He tried to _____ from his memory what he knew of his former neighbor..
①  think of
②  remember
③  summon
④  gave way
【单选题】 In the past he often made his sister___, but now he is often made __by his sister.
①  to cry; to cry
②  cry
③  to cry; cry
④  cry; to cry
【单选题】 I think his hard work will _______ big success in the end.
①  take up
②  put out
③  get by
④  result in
【单选题】 When he bent down to tie his shoelace, the belt of his trousers _____.
①  ruined
②  cracked
③  broke
④  split
【单选题】 Jack is so ____ to his appearance that he never has his clothes pressed.
①  adverse
②  anonymous
③  indifferent
④  casual
随机题目
【单选题】 以下说法中正确的是()。
①  C++程序总是从第一个定义的函数开始执行
②  C++程序总是从main函数开始执行
③  C++函数必须有返回值,否则不能使用函数
④  C++程序中有调用关系的所有函数必须放在同一个程序文件中
【单选题】 以下正确的说法是()。
①  用户调用标准库函数前,必须重新定义
②  用户可以重新定义标准库函数,若如此,该函数将失去原有含义
③  系统不允许用户重新定义标准库函数
④  用户调用标准库函数前,不必使用预编译命令将该函数所在文件包括到用户源文件中
【单选题】 在下面的字符数组定义中,哪一个有语法错误。()。
①  char a[20]=”abcdefg”;
②  char a[]=”x+y=55.”;
③  char a[15];
④  char a[10]=’5’;
【单选题】 假定一个二维数组的定义语句为“int a[3][4]={{3,4},{2,8,6}};”,则元素a[1][2]的值为()。
①  2
②  4
③  6
④  8
【单选题】 函数原型语句正确的是()。
①  int Function(void a);
②  void Function (int);
③  int Function(a);
④  void int(double a);
【单选题】 假定一个二维数组的定义语句为“int a[3][4]={{3,4},{2,8,6}};”,则元素a[2][1]的值为()。
①  0
②  4
③  8
④  6
【单选题】 在下面的二维数组定义中,正确的是()。
①  int a[5][];
②  int a[][5];
③  int a[][3]={{1,3,5},{2}};
④  int a[](10);
【单选题】 函数调用func((exp1,exp2),(exp3,exp4,exp5))中所含实参的个数为( )个。
①  1
②  2
③  4
④  5
【单选题】 以下叙述中不正确的是()。
①  在一个函数中,可以有多条return语句
②  函数的定义不能嵌套,但函数的调用可以嵌套
③  函数必须有返回值
④  不同的函数中可以使用相同名字的变量
【单选题】 以下关于函数模板叙述正确的是()。
①  函数模板也是一个具体类型的函数
②  函数模板的类型参数与函数的参数是同一个概念
③  通过使用不同的类型参数,函数模板可以生成不同类型的函数
④  用函数模板定义的函数没有类型