从数轴上表示﹣1的点开始先向右平移6个单位长度,再向左移动5个单位长度,得到一个点,则这个点表示的数是[ ]
A.﹣2
B.0
C.1
D.2
答案:B
Mr. Garcia ______ anyone who hasn’t had a college education.
A.looks down on
B.looks after
C.looks for
D.looks into
窗体上有一个名称为Command1的命令按钮,其单击事件过程及有关函数过程如下: Private Sub Command1 Click() Dim n As Integer n=add(5,10) Print n End Sub Function add(v1 As Integer,v2 As Integer,Optiona1 v3)As Integer If Not IsMissing(v3)Then add=v1+v2+v3 Else add=v1+v2 End If End Function 运行程序,单击命令按钮,以下叙述中正确的是()。
A.程序不能正常运行,因为函数add的参数定义有错
B.程序不能正常运行,因为函数定义与函数调用语句的参数个数不匹配
C.程序能正常运行,结果是在窗体上显示15
D.程序能正常运行,结果是在窗体上显示510v3