单项选择题
第三方支付平台是投资人最为关注的互联网金融模式,也是我国当前发展最快、风险高发的互联金融模式。
-
A.正确
B.错误
点击查看答案&解析
相关考题
-
未知题型
在窗体上画一个命令按钮(其名称为Command1),然后编写如下事件过程:Private Sub Command1_Click() Dim a(5,5)As Integer Dim i As Integer, j As Integer For i= 1 To 3 For j= 1 To 3 a(i,j)=(i-1)*3+j Print a (i,j) Next j Print Next iEnd Sub 程序运行后,单击命令按钮,在窗体上的输出结果是______。A.1 4 7 2 5 8 3 6 9B.1 2 3 4 5 6 7 8 9C.1 2 3 4 5 6 7 8 9D.没有输出
A.1
B.1
C.1 -
单项选择题
互联网金融是利用互联网技术和移动通信技术等一系列现代信息科学技术实现资金融通的一种新型服务模式。
A.正确
B.错误 -
未知题型
在窗体上画两个标签和一个命令按钮,其名称分别为Label1、Label2和Command1,然后编写如下程序:Private Sub func(L As Label,ByVal a As Integer) L.Caption='1234' a=a*aEnd SubPrivate Sub Form_ Load() Label1.Caption='ABCD' Label2.Caption=10End SubPrivate Sub Command1_Click() a=Val(Label2.Caption) Call func (Label1,a)Label2.Caption=aEnd Sub 程序运行后,单击命令按钮,在两个标签Label1和Label2中显示的内容分别是______。A.ABCD和10B.1234和100C.ABCD和100D.1234和10
A.Caption='1234'
B.Caption='ABCD'
C.Caption=10End
D.Caption)
E.Caption=aEnd
F.ABCD和10
B.1234和100
C.ABCD和100