【判断题】【消耗次数:1】
Audience is the only factor that a speaker/writer needs to consider when making a choice of words.
正确
错误
参考答案:
复制
纠错
相关题目
【单选题】 When making a choice of words, a speaker/writer needs to consider the following major factors EXCEPT_______.
①  audience
②  length of speech
③  purpose
④  formal and informal English
【单选题】 When making a choice of words, speaker/writer needs to consider the following major factors EXCEPT_______.
①  audience
②  length of speech
③  purpose
④  formal and informal English
【单选题】 13. Unfortunately, when I dropped in, Doctor Li _____ for Beijing to join in the fight again SARS, so we only had time for a few words.
①  justleft
②  hasjustleft
③  isjustleaving
④  wasjustleaving
【单选题】 The speaker, _______ for her splendid speeches, was warmly received by the audience.
①  having known
②  being known
③  knowing
④  known
【单选题】 A good public speaker can _______ the audience (听众)at the very beginning.
①  convey
②  portray
③  exaggerate
④  hook
【单选题】 A large part of a person’s memory is ____ words and combination of words.
①  by means of
②  in terms of
③  in connection with
④  by way of
【单选题】 A large part of a person’s memory is _____words and combination of words.
①  by means of
②  in terms of
③  in connection with
④  by way of
【单选题】 ____ to speak when the audience interrupted him.
①  Hardly had he begun
②  No sooner had he begun
③  Not until began
④  Scarcely did he begin
【单选题】 Lexicology, a branch of linguistics, deals with_______of words.
①  the nature
②  the history
③  the meaning and use
④  all of the above
【单选题】 The essential difference between grammar and lexicology is that the former deals with_______of words and the latter with _______ of words.
①  meanings; forms and structures
②  forms and structures; meanings
③  forms; structures and meanings
④  meanings and forms; structures
随机题目
【单选题】 若有定义:int a=3,b=2,c=1;并有表达式:①a%b,②a>b>c,③b&&c+1,④c+=1,则表达式值相等的是()。
①  ①和②
②  ②和③
③  ①和③
④  ③和④
【单选题】 若在I/O流的输出中使用控制符setfill()设置填充字符,应包括的头文件是()。
①  stdlib.h
②  iostream.h
③  fstream.h
④  iomanip.h
【单选题】 下面哪个选项不是面向对象编程的特征:()
①  封装
②  继承
③  多态
④  重用
【单选题】 下列描述中,属于抽象类的性质是()
①  可以说明虚函数
②  可以进行构造函数重载
③  可以定义友元函数
④  不能说明其对象
【单选题】 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