第10题: [单项选择]To make your humor work, you should ______. A. take advantage of different kinds of audience B. make fun of the disorganized people C. address different problems to different people D. show sympathy for your listeners 参考答案:C 答案解析:[解析] 从第一段的第一句话中,我们可以得知“If you intend using humor in your talk to make people smile,you must know how
第26题: [单项选择]设有如下过程: Sub ff(x,y,Z,) x=y+z End Sub 以下所有参数的虚实结合都是传址方式的调用语句是 A. Call ff(5,7,z) B. Call ff(x,y,z) C. Call ff(3+x,5+y,z) D. Call ff(x+Y,x-y,z) 参考答案:B 答案解析:[解析] 题目中Sub过程的形式参数都没有特别指明是传址方式还是传值方式,隐含的是传址。实际调用时,还要根据实参的形式,才能确定是传值还是传址的数据传送方式。若实参为常量或表达式,则为传值的传递方式;