参考答案和解析
正确答案:B
解析:译文的含义是:()是一个变量的地址或存储了其他变量地址的变量。A、B、C、D各选项的意思分别是:控制器、指针、数组、记录。很明显,题目描述的是指针,所以应该选择B。
更多“______ is the address of a variable or a variable in which the address of another variable ”相关问题
  • 第1题:

    下列( )是不合法的变量名。

    A.2variable

    B.variable2

    C.whatavariable

    D.$another


    正确答案:A

  • 第2题:

    9、下列代码的运行结果为() def test_scope(): variable=100 print(variable,end=',') def func(): print(variable,end=',') func() varialbe=300 test_scope() print(varialbe)

    A.100,300,300

    B.100,100,100

    C.100,100,300

    D.抛出异常


    'zhang'28

  • 第3题:

    执行下列代码后,得到的结果是______。 import tensorflow as tf a = tf.constant(3) x = tf.Variable(a) print(isinstance(a, tf.Tensor), isinstance(a, tf.Variable)) print(isinstance(x, tf.Tensor), isinstance(x, tf.Variable))

    A.True False False True

    B.False True True False

    C.True True False False

    D.False False True True


    B

  • 第4题:

    What are two characteristics of RIPv2?()

    A. classful routing protocol

    B. variable-length subnet masks

    C. broadcast addressing

    D. manual route summarization

    E. uses SPF algorithm to compute path


    参考答案:B, D

  • 第5题:

    以下代码的运行结果是什么? import tensorflow as tf with tf.variable_scope("a"): with tf.variable_scope("b"): c = tf.get_variable("c",[0]) print c.name

    A.c

    B.a/b/c

    C.a/b/c:0

    D.c:0


    9 16

  • 第6题:

    4、函数内定义结构体指针变量的形式是?

    A.struct type_variable_name variable_name;

    B.Struct type_variable_name variable_name;

    C.struct variable_name type_variable_name;

    D.struct variable_name;


    正确