______statement can perform. a calculation and store the result in a variable So that it can be used later.A.AssignmentB.ControlC.I/OD.DeclarationA.B.C.D.

题目

______statement can perform. a calculation and store the result in a variable So that it can be used later.

A.Assignment

B.Control

C.I/O

D.Declaration

A.

B.

C.

D.


相似考题
参考答案和解析
正确答案:A
更多“______statement can perform. a calculation and store the result in a variable So that it c ”相关问题
  • 第1题:

    下列赋值语句中正确的是

    A.STORE 1 TO X,Y

    B.STORE 1,2 TO X

    C.STORE 1 TO X Y

    D.STORE 1、2 TO X


    正确答案:A
    解析:利用STORE命令给变量赋值,可以一次性给多个变量赋以相同的变量值,且各个变量名之间应该用逗号隔开,但不能将多个变量值赋给一个变量或多个变量。

  • 第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题:

    It is difficult to understand this kind of _______ calculation. A. intricate B. varied C. indispensable D. equable


    正确答案:A
    intricate 错综复杂的,纠缠不清的; varied 不同的,种种的; indispensable 不可缺少的,绝对必要的; equable 变动甚少的,稳定的。   (本解析由学员提供)

  • 第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;


    正确