Learning how to write is like taking a course in public speaking. I’ d ask whether anyone in class had ever taken such a course. Invariably a few hands would go up.“What did you learn in that course?” I’d ask.“Well, the main thing was learning how to face an audience ... not to be inhibited( 拘谨 )... not to be nervousExactly, when you take a course in public speaking nowadays, you don’ t hear much about grammar and vocabulary. Instead, you’ re taught how not to be afraid or embarrassed, how to speak without a prepared script, how to read out to the live audience before you. Public speaking is a matter of overcoming your long-standing nervous inhibitions.The same is true of writing. The point of the whole thing is to overcome your nervous inhibitions, to break through the invisible barrier that separates you from the person who’ ll read what you wrote. You must learn to sit in front of your typewriter or dictating machine and read out to the person at the other end of the line.Of course, in public speaking, with the audience right in front of you, the problem is easier. You can look at them and talk to them directly. In writing, you’ re alone. It needs an effort of your experience or imagination to take hold of that other person and talk to him or her. But that effort is necessary -- or at least it’ s necessary until you’ve reached the point when you quite naturally and unconsciously “talk on paper1、The topic of the passage is ________A、how to be a good writerB、how to be a good speakerC、how to express yourself with your wordsD、how to get rid of nervousness in public speaking2、The public speech course mainly teaches students ______A、how to make an attractive speech using perfect grammar and vocabularyB、how to express themselves exactly and vividlyC、how to collect data needed and organize itD、how to get over their nervousness when making a speech3、The similarity between making a public speech and writing is that _______A、you have to do a lot of preparation work beforehandB、 you should get over your nervous inhibitionsC、 you should know grammar and vocabulary well to accomplish themD、 both of them have audience4、In the opinion of the author, public speaking is much easier than writing because _______A、public speaking requires less effort than writingB、 it’ s unnecessary for you to write a lot for speech and you can say anything as you likeC、 you face the audience directly in public speaking; while writing is otherwiseD、 in public speaking, the audience have to listen to you whether they like it or not5、The author of this passage probably is a ________A、bossB、 politicianC、 writerD、 professor

Learning how to write is like taking a course in public speaking. I’ d ask whether anyone in class had ever taken such a course. Invariably a few hands would go up.

“What did you learn in that course?” I’d ask.

“Well, the main thing was learning how to face an audience ... not to be inhibited( 拘谨 )... not to be nervous

Exactly, when you take a course in public speaking nowadays, you don’ t hear much about grammar and vocabulary. Instead, you’ re taught how not to be afraid or embarrassed, how to speak without a prepared script, how to read out to the live audience before you. Public speaking is a matter of overcoming your long-standing nervous inhibitions.

The same is true of writing. The point of the whole thing is to overcome your nervous inhibitions, to break through the invisible barrier that separates you from the person who’ ll read what you wrote. You must learn to sit in front of your typewriter or dictating machine and read out to the person at the other end of the line.

Of course, in public speaking, with the audience right in front of you, the problem is easier. You can look at them and talk to them directly. In writing, you’ re alone. It needs an effort of your experience or imagination to take hold of that other person and talk to him or her. But that effort is necessary -- or at least it’ s necessary until you’ve reached the point when you quite naturally and unconsciously “talk on paper

1、The topic of the passage is ________

A、how to be a good writer

B、how to be a good speaker

C、how to express yourself with your words

D、how to get rid of nervousness in public speaking

2、The public speech course mainly teaches students ______

A、how to make an attractive speech using perfect grammar and vocabulary

B、how to express themselves exactly and vividly

C、how to collect data needed and organize it

D、how to get over their nervousness when making a speech

3、The similarity between making a public speech and writing is that _______

A、you have to do a lot of preparation work beforehand

B、 you should get over your nervous inhibitions

C、 you should know grammar and vocabulary well to accomplish them

D、 both of them have audience

4、In the opinion of the author, public speaking is much easier than writing because _______

A、public speaking requires less effort than writing

B、 it’ s unnecessary for you to write a lot for speech and you can say anything as you like

C、 you face the audience directly in public speaking; while writing is otherwise

D、 in public speaking, the audience have to listen to you whether they like it or not

5、The author of this passage probably is a ________

A、boss

B、 politician

C、 writer

D、 professor


相关考题:

to, I, how, last, winter, skate, learned__________________________________________________________________________.

i’m thinking about ______________ the course in diving this summer. A. makingB. visitingC. trainingD. taking

I' m particularly proud of()I organized the finances.A. whoB. whichC. how

Why not________your teacher for help when you can’t finish ________it by yourself?A.ask,write B.to ask,writing C.ask,writing D.asking,write

9. — I ask you _________questions about your plan?— course.A.thatB.muchC.someD.any

( )is a subset of artificial intelligence in the field of computer science that often uses statistical techniques to give computers the abillity to mlGarnr,(i.e.,progressively improve performance on a specific task)with data.Without being explitiy?programmed.A.Machine learningB.Program language learningC.Natural language learningD.Statistical?learning

--Who is he? Is he our new teacher?--I'm sorry. I don't know __ and __ he is.A.who; whatB.who ; howC.how; whatD.where ; how

--Who is he? Is he our new teacher?--I'm sorry. I don't know ___________ andhe is.A.who; whatB.who ; howC.how; whatD.where ; how

若输入: 11 12 13 14 15 0 则写出下面程序的输出结果。 class Program { static void Main(string[] args) { int no = 0, i ; do { Console.Write("请输入整数:"); i= int.Parse(Console.ReadLine()); no += i; } while (i != 0); Console.Write("和是{0}", no); } }

补全代码:执行下面程序,程序输出结果为:0 1 2 3 class Program{ public void printArray(){ int[] ia = new int[4]; for (int i = 0; i < ia.Length; i++){ ia[i] = i; Console.Write("{0} ", ia[i]); } } static void Main(string[] args){ Program lin = new Program(); ________; } }A.lin.printArray()B.Console.Write("{0} {1} {2} {3}");C.printArray()D.Console.Write(0123);