第12题: [填空题]To certain extent, GM crops are regarded as ______since the gene inserted into a plant cannot be seen, tasted or touched. 参考答案:invisible 答案解析:[详细解答] 文章列举了一些针对基因改造作物的“暴行”,但是结果是抗议人士的行动适得其反,因为他们所破坏的,全都是传统农作物。究其原因,作者谈到“在每个案例里,那些行动派都把一般作物误认为基因改造过的
第29题: [单项选择]All the arrangements should have been completed prior________ our departure. A. in B. to C. by D. before 参考答案:B 答案解析:固定搭配。prior to在……之前。如:They’re planning to talk to Joe prior to the meeting.在我们离开之前,所有的事情都必须办好。
第33题: [填空题]在窗体中添加一个名称为Command1的命令按钮,然后编写如下程序:
Private Sub f(ByVal x As Integer)
x=x+4
End Sub
Private Sub Command1_Click( )
i=3
Call f(i)
If i>4 Then i=i*2
MsgBox i
End Sub
窗体打开运行后,单击命令按钮,则消息框的输出结果为______。 参考答案:C 答案解析:[解析] 本题考查VBA中参数传递的知识。在VBA的过程调用时,参数有两种传递方式:传址传递和传值传递。如果在过程声明时形参用ByVal声明,说明此参数为传值调用;若用ByRef声明,说明此参数为传址