【单选题】【消耗次数:1】
4.People are liable to______othersfromtheir own first impressions.
judge
peek
leak
look
参考答案:
复制
纠错
相关题目
【单选题】 The number of people who ______ cars of their own is increasing.
①  has
②  have
③  there is
④  there are
【判断题】 Accordng to introduction etiquette, the younger people should be introduced to older people first.
①  正确
②  错误
【单选题】 People’s status in society is frequently ____ by how much they own.
①  measured
②  examined
③  tested
④  questioned
【单选题】 People’s status in society is frequently _____by now much they own.
①  measured
②  examined
③  tested
④  questioned
【单选题】 These plastic flowers look so ___ that many people think they are real.
①  beautiful
②  natural
③  artificial
④  similar
【单选题】 These plastic flowers look so ________ that many people think they are real.
①  natural
②  beautiful
③  artificial
④  similar
【单选题】 4.____the diamond, he had to look for a place to hide it.
①  Having stolen
②  Having been stolen
③  Stolen
④  Stealing
【单选题】 The woman was innocent and the judge insisted that she______at once.
①  be set free
②  be setting free;
③  was set free
④  set free
【单选题】 The judge insisted that the woman______ innocent and that she______at once.
①  was; be set free
②  be; be set free;
③  be; was set free
④  was; was set free
【单选题】 4.Many people have accused the superpower of ____ bombing of the “innocent country”.
①  powerful
②  violent
③  indiscriminate
④  big
随机题目
【单选题】 函数重载是指(????)
①  两个或两个以上的函数取相同的函数名,但形参的个数或类型不同
②  两个以上的函数取相同的名字和具有相同的参数个数,但形参的类型可以不同
③  两个以上的函数名字不同,但形参的个数或类型相同
④  两个以上的函数取相同的函数名,并且函数的返回类型相同
【单选题】 以下函数的返回结果是(????) int function(char *x) { char *p=x; while(*p++); return(p-x-1); }
①  求字符串的长度
②  将字符串x连接到字符串p后面
③  将字符串x复制到字符串p中
④  将字符串x反向存放
【单选题】 函数原型语句正确的是(????)
①  int Function(void a);
②  void Function (int);
③  int Function(a);?
④  void int(double a);
【单选题】 为了提高程序的运行速度,可将不太复杂的功能用函数实现,此函数应选择(????)。
①  内联函数
②  重载函数
③  递归函数
④  模板
【单选题】 以下关于函数模板叙述正确的是(????)
①  函数模板也是一个具体类型的函数
②  函数模板的类型参数与函数的参数是同一个概念
③  通过使用不同的类型参数,函数模板可以生成不同类型的函数
④  用函数模板定义的函数没有类型
【单选题】 当类中一个字符指针指向具有n个字节的存储空间时,它所存储字符串的最大长度是( )
①  n
②  n-1
③  n+1
④  n-2
【单选题】 设有如下函数定义 int f(char *s) { char *p=s; while(*p!=’\0’) p++; return(p-s); } 在主函数中用cout<<f(“good”)调用上述函数, 则输出结果为( )
①  3
②  4
③  5
④  6
【单选题】 下列(????)的调用方式是引用调用
①  形参和实参都是变量?
②  形参是指针,实参是地址值
③  形参是引用,实参是变量
④  形参是变量,实参是地址值
【单选题】 在下面的字符数组定义中,哪一个有语法错误(????)
①  char a[20]=”abcdefg”;
②  char a[]=”x+y=55.”;
③  char a[15];
④  char a[10]=’5’;
【单选题】 若定义了函数 double *function(), 则函数function的返回值为(????)。
①  实数型
②  实数的地址C.指向函数的指针
③  函数的地址