A . 不定值
B . 5
C . 0
D . 无定义出错
[判断题] 某一过程中的静态变量在过程结束后,静态变量及其值可以在其它过程中使用A . 正确B . 错误
[主观题]过程中的静态变量是局部变量,当过程再次被执行时,静态变量的值是上一次过程调用后的值。( )
[判断题] 当一个过程调用其他过程时,调用过程和被调用过程之间的通信只能由非局部变量传递。A . 正确B . 错误
[单选题]在调用过程时,我们把事件中的调用过程中的参数称为( )A.实参B.形参C.址参D.变参
[单选题]要想在过程Proc调用后返回形参x和y的变化结果,下列定义语句中正确的是( )。A.Sub Proc(x as Integer,y as Integer)B.Sub Proc(ByVal x as Integer,y as Integer)C.Sub Proc(x as Integer,ByVal y as Integer)D.Sub Proc(ByVal x as Integer,ByVal y as Integer)
[单选题]要想在过程Proc调用后返回形参x和y的变化结果,下列定义语句中正确的是______。A.Sub Proc(x as Integer, y as Integer)B.Sub Proc(By Val x as Integer, y as Integer)C.Sub Proc(x as Integer, By Val y as Integer)D.Sub Proc(By Val x as Integer, By Val y as Integer)
[单选题]( 27 )要想在过程 Proc 调用后返回形参 x 和 Y 的变化结果,下列定义语句中正确的是A. ) Sub Proc ( x as Integer,y as Integer )B. ) Sub Proc ( ByVal x as Integer, y as Integer )C. ) Sub Proc ( x as Integer,Byval y as Integer )D. ) Sub Proc ( Byval x as Integer, Byval y as Integer )
[单选题]要想在过程调用中返回两个结果,下面的过程定义语句合法的是A.Sub Submit(ByVal n,ByVal m)B.Sub Submit(n,ByVal m)C.Sub Submit(n,m)D.Sub Submit(ByVal n,m)
[单选题]设x和y均为int型变量,则执行下的循环后,y值为()for(y=1,x=1;y<=50;y){if(x==10))break;if(x%2==1){x=5;continue;}x-=3;}A . 2B . 4C . 6D . 8
[问答题] 什么是过程?VBScript脚本中如何调用过程?