A.Line 26 prints "a" to System.out.
B.Line 26 prints "b" to System.out.
C.An exception is thrown at line 26 at runtime.
D.Compilation of class A will fail due to an error in line 6.
第1题:
若有以下窗体单击事件过程:Private SubForm_Click( ) result=1 For i=1To 6 Step 3 result=result*i Next i MsgBoxresult End Sub打开窗体运行后,单击窗体,则消息框的输出内容是( )。
A.1
B.4
C.15
D.120
第2题:
在窗体中使用一个文本框(名为n)接受输入的值,有一个命令按钮run,事件代码如下: Private Sub run_Click() result="" For i=1 To Me!n For j=1 To Me!n result=result+"*" Next j result=result+Chr(13)+Chr(10) Next i MsgBox result End Sub 打开窗体后,如果通过文本框输入的值为4,单击命令按钮后输出的图形是( )。
A.* * * * * * * * * * * * * * * *
B. * * * * * * * * * * * * * * * *
C. * * * * * * * * * * * * * * * * * * * * * * * * * * * *
D. * * * * * * * * * * * * * * * *
第3题:
若有以下窗体单击事件过程: Private Sub Form_Click() result = 1 For i = 1 To 6 step 3 result = result * i Next i MsgBox result End Sub 打开窗体运行后,单击窗体,则消息框的输出内容是______。
A.1
B.4
C.15
D.120
第4题:
在窗体中使用一个文本框(名为n.接受输入的值,有一个命令按钮run,事件代码如下:
Private Sub run_Click( .
result = ""
For i= 1 To Me!n
For j = 1 To Me!n
result = result + "*"
Next j
result = result + Chr(13. + Chr(10.
Next i
MsgBox result
End Sub
打开窗体后,如果通过文本框输入的值为4,单击命令按钮后输出的图形是
第5题:
试题31
若有以下窗体事件过程:
Private Sub Form_Click()
result=1
For i=1 To 6 step 3
Result = result * 1
Next i
MsgBox result
End Sub
打开窗体运行后,单击窗体,则消息框的输出内容是()
A.1
B.4
C.15
D.120
第6题:
若有以下窗体单击事件过程: Private Sub Form_Click() result = 1 For i = 1 To 6 step 3 result = result * i Next i MsgBox result End Sub 打开窗体运行后,单击窗体,则消息框的输出内容是()。
A.1
B.4
C.15
D.120