niusouti.com

过程SubTest(ByValxAsInteger,ByRefyAsInteger)中()。A、x、y都是传值参数B、x、y都是传址参数C、x是传值参数,y是传址参数D、x是传址参数,y是传值参数

题目
过程SubTest(ByValxAsInteger,ByRefyAsInteger)中()。

A、x、y都是传值参数

B、x、y都是传址参数

C、x是传值参数,y是传址参数

D、x是传址参数,y是传值参数


相似考题
参考答案和解析
参考答案:C
更多“过程SubTest(ByValxAsInteger,ByRefyAsInteger)中()。 ”相关问题
  • 第1题:

    【单选题】在VB.NET中,以下正确的函数定义形式是()。

    A.Function fun(ByVal x as Integer;ByValy as Integer)

    B.Function fun(ByVal x as Integer,ByValy as Integer)

    C.Function fun(x as Integer;y as Integer);

    D.Function fun(x,y as Integer)


    A

  • 第2题:

    在VB.NET中,以下正确的过程定义形式是()。

    A.Sub proc(ByVal x as Integer;ByValy as Integer)

    B.Sub proc(ByVal x as Integer,ByValy as Integer)

    C.Sub proc(x as Integer;y as Integer);

    D.Sub proc(x,y as Integer)


    B

  • 第3题:

    2、在VB.NET中,以下正确的函数定义形式是()。

    A.Function fun(ByVal x as Integer;ByValy as Integer)

    B.Function fun(ByVal x as Integer,ByValy as Integer)

    C.Function fun(x as Integer;y as Integer);

    D.Function fun(x,y as Integer)


    Function fun(ByVal x as Integer,ByValy as Integer)

  • 第4题:

    【单选题】在VB.NET中,以下正确的过程定义形式是()

    A.Sub proc(ByVal x as Integer;ByValy as Integer)

    B.Sub proc(ByVal x as Integer,ByValy as Integer)

    C.Sub proc(x as Integer;y as Integer);

    D.Sub proc(x,y as Integer)


    过程的定义不能嵌套,但过程调用可以嵌套。

  • 第5题:

    1、在VB.NET中,以下正确的过程定义形式是()。

    A.Sub proc(ByVal x as Integer;ByValy as Integer)

    B.Sub proc(ByVal x as Integer,ByValy as Integer)

    C.Sub proc(x as Integer;y as Integer);

    D.Sub proc(x,y as Integer)


    Sub proc(ByVal x as Integer,ByValy as Integer)