题目内容

If you intend using humor in your talk to make people smile, you must know how to identify shared experiences and problems. Your humor must be relevant to the audience and should help to show them that you are one of them or that you understand their situation and are in sympathy with their point of view. Depending on whom you are addressing, the problems will be different. If you are talking to a group of managers, you may refer to the disorganized methods of their secretaries; alternatively if you are addressing secretaries, you may want to comment on their disorganized bosses. Here is an example, which I heard at a nurses’’ convention, of a story which works well because the audience all shared the same view of doctors. A man arrives in heaven and is being shown around by St. Peter. He sees wonderful accommodations, beautiful gardens, sunny weather, and so on. Everyone is very peaceful, polite and friendly until, waiting in a line for lunch, the new arrival is suddenly pushed aside by a man in a white coat, who rushes to the head of the line, grabs his food and stomps over to a table by himself. "Who is that" the new arrival asked St. Peter. "Oh, that’’s God,"came the reply,"but sometimes he thinks he’’s a doctor." If you are part of the group which you are addressing, you will be in a position to know the experiences and problems which are common to all of you and it’’ 11 be appropriate for you to make a passing remark about the inedible canteen food or the chairman’’ s notorious bad taste in ties. With other audiences you mustn’’ t attempt to cut in with humor as they will resent an outsider making disparaging remarks about their canteen or their chairman. You will be on safer ground if you stick to scapegoats like the Post Office or the telephone system. If you feel awkward being humorous, you must practice so that it becomes more natural. Include a few casual and apparently off-the-cuff remarks which you can deliver in a relaxed and unforced manner. Often it’’ s the delivery which causes the audience to smile, so speak slowly and remember that a raised eyebrow or an unbelieving look may help to show that you are making a light-hearted remark. Look for the humor. It often comes from the unexpected. A twist on a familiar quote "If at first you don’’t succeed, give up" or a play on words or on a situation.Search for exaggeration and understatements. Look at your talk and pick out a few words or sentences which you can turn about and inject with humor. The best title for the text may be

A. Use Humor Effectively.
B. Various Kinds of Humor.
C. Add Humor to Speech.
Different Humor Strategies.

查看答案
更多问题

下面程序的作用是用InputBox函数输入一个整数,然后判断能否同时被2,5和7整除, 果能则输出该数及平方值。请填空。 Private Sub Command1_Click() Dim numX As Integer numX = Val (InputBox("请输入一个整数")) If【 】Then Form1.Print【 】 End If End Sub

下面程序的功能是产生10个小于100(不含100)的随机正整数,并统计其中5的倍数所占比例,但程序不完整,请补充完整。 Sub PR( ) Randomize Dim a For j=1 To 10 a(i)=Int( 【 】 ) If 【 】Then k=k+1 Print a(j) Next j Print Print k/10 End Sub

在窗体上有一个“背景色变换”按钮和一个“结束”按钮。单击“背景色变换”按钮,背景色变为红色;再单击,背景色变为绿色;再单击,背景色变为蓝色;再单击背景色变为红色 ……如此循环。单击“结束”按钮,程序运行结束。请填空。 Private Sub cmdChange_Click() If Mark=0 Then 【 】 Mark=1 ElseIf【 】Then Forml.BackColor=vbGreen Mark=2 ElseIf Mark=2 Then Form1.BackColor;vbBlue 【 】 End If End Sub Private Sub cmdExit_Click() End End Sub

下面程序是由鼠标事件在窗体上画图,如果按下鼠标将可以画图,双击窗体可以清除所画图形。补充完整下面的程序。 首先在窗体层定义如下变量: Dim PaintStart As Boolean 编写如下事件过程: Private Sub Form_Load() DrawWidth=2 ForeColor=vbGreen End Sub Private Sub Form_MouseDown(Button As Integer,Shift As Integer,_ X As Single,Y As Single) 【 】 End Sub Private Sub Form_MouseMove(Button As Integer,Shift As Integer,_ X As Single,Y As Single) If PaintStart Then PSet(X,Y) End If End Sub Private Sub Form_MouseUp(Button As Integer,Shift As Integer,_ X As Single,Y As Single) 【 】 End Sub Private Sub Form_Db1Click() 【 】 End Sub

答案查题题库