A. G00
B. G01
C. G02
D. G03
车削斜面时,程序代码为:A. G00B. G01C. G02D. G03
[单选题]把源程序代码翻译为目标程序代码可以使用的翻译方式为()。A . 嵌入方式B . 运行方式C . 连接方式D . 解释方式或编译方式
[单选题]车削外圆面时,待加工面直径为D,已加工面直径为D,则切削深度Ap()A .D-D;B .D-D;C .(D-D./2;
[单选题]在车床上用三爪卡盘夹持阶梯轴的小端外圆面,车削大端外圆时,大端外圆面的设计基准为a,定位基准为b,定位基面为c()A . a.阶梯轴轴心线b.小端轴心线c.小端外圆面B . a.大端轴心线b.小端轴心线c.小端外圆面C . a.阶梯轴轴心线b.阶梯轴轴心线c.大端外圆面D . a.大端轴心线b.大端轴心线c.大端外圆面
[单选题]子程序结束的程序代码是()。A .M02B .M17C .M19D .M30
[单选题]单击命令按钮时,下列程序代码的执行结果为( )。 Private Function PickMid(xStr As String)As Sting Dim tempStr As String Dim strLen As Integer TempStr=" " StrLen=Len(xStr) i=1 Do While i<=strLen/2 tempStr=tempStr+Mid(xStr,i,1)+Mid(xStr,strLen-i+1,1) i=i+1 Loop PickMid=temp
[单选题]单击窗体时,下列程序代码的执行结果为______ 。 Private Sub Test (x As Integer) x=x*2+1 If x < 6 Then Call Test(x) End If x-x*2+1 Print x; End Sub Private Sub Command1_ Click () Test 2 End SubA.23 47B.5 11C.10 22D.23 29
[单选题]单击命令按钮时,下列程序代码的执行结果为______ 。Public Function MyFune(m As Integer,n As Integer) As Integer Do While m<>n Do While m>n m=m-n Loop Do While m<n n=n -m Loop Loop MyFunc=mEnd FunctionPrivate Sub Command1_Click() Print MyFunc(24, 18)End SubA. 2B.4C.6D.8
[单选题]单击命令按钮时,下列程序代码的执行结果为______。 Private Function PickMid(xStr As String) As String Dim tempStr As String Dim strLen As Integer tempStr=“” strLen=Len(xStr) i=1 Do While i<=strLen/2 tempStr=tempStr+Mid(xStr,i,1)+Hid(xStr,strLen-i+1,1) i=i + 1 Loop PickMid=
[单选题]单击命令按钮时,下列程序代码的执行结果为______。 Private Function FirProc (x As Integer,y As Integer,z As Integer) FirProc=2*x+y+3*z End Function Private Function SecProc(x As Integer,y As Integer,z As Integer) SecProc=FirProc(z,x,y)+x End Function Private Sub Command1_C