对检验人员的工作不应考核()。
A、产品质量的好坏
B、工作量大小
C、检验准确性
D、记录
参考答案:A
内收与外展
在窗体上画一个名称为Command1的命令按钮,并编写如下过程: Private Sub Command1_Click()Dim x AS IntegerStatic y As Integerx=10y=5Call f1(x, y)Print x,y End Sub Private Sub f1(ByRef x1 As Integer, y1 As Integer)x1=x1+2y1=y1+2 End Sub 程序运行后,单击命令按钮,在窗体上显示的内容是______。
A.10 5
B.12 5
C.10 7
D.12 7