Windows2000可以支持长文件名的使用,它最长不得超过( )字符。
A.8个
B.127个
C.255个
D.256个
参考答案:C
优先股是一种介于股本资金与( )之间的融资方式。
A.盈利
B.股票利息
C.负债
D.银行利率
单击命令按钮时,下列程序代码的执行结果为( )。 Private Function FirProc(x As Integer,y As Integer,z As Integer) FirProc=2*x+y+3*z End Funcfion Private Function SecProc(x As Integer,y As Integer,z As Integer) SecProc=FirProc(z,x,y)+x End Funcfion Private Sub Command1_Click() Dim a As Integer Dim b As Integer Dim c As Integer a=2 b=3 c=4 Printf SecProc(c,b,a) End Sub
A.21
B.19
C.17
D.34