更多“液态烃含C<SUB>5</sub>较多时,如果作化工原料用,会使”相关问题
  • 第1题:

    编写如下通用过程: Sub Proc(x As Single,y As Single) t=x x=t/y y=t Mod y End Sub 在窗体上画一个命令按钮,然后编写如下事件过程: Private Sub Commandl Click() Dim a As Single Dim b As Single a=5 b=4 Proc a,b Print a,b End Sub 程序运行后,如果单击命令按钮,则输出结果为

    A.5 4

    B.1.25 1

    C.4 5

    D.1.25 5


    正确答案:B
    解析:本题需掌握函数调用时的参数传递和运算符两方面的知识点。在执行调用语句Proc a,b后,函数proc内的参数x被a取代,y被b取代。执行t=x、x=t/y后,得x=5/4即x为1.25。执行语句y=tMody后,得y=5 Mod 4即y的值为1。故执行调用函数后a,b的值变分别变为1.25和1。最后执行语句print a,b将a、b的值输出。选项B正确。

  • 第2题:

    假定有如下的Sub过程:Sub Sub1 (x As Single, y As Single) t=x x = t/y y = t Mod yEnd Sub 在窗体上画一个命令按钮,然后编写如下事件过程:Private Sub Command1_ Click() Dim a As Single Dim b As Single a = 5 b = 4 Sub1 a, b Print a; b End Sub 程序运行后,单击命令按钮,输出结果为______。

    A.5 4

    B.1 1

    C.1.2 5.4

    D.1.25 1


    正确答案:D
    解析:本题重点是在子过程的调用过程中,虚实参数的传送问题,变量a和b按址传送,返回子过程的x和y值。

  • 第3题:

    催化液态烃主要由()、()组成,是宝贵的石油化工原料。


    正确答案:C3;C4

  • 第4题:

    class Super { public int getLenght() { return 4; } } public class Sub extends Super { public long getLenght() { return 5; } public static void main(String[] args) {Super sooper = new Super(); Sub sub = new Sub(); System.out.println( sooper.getLenght() + “,” + sub.getLenght() ); } } What is the output? ()

    • A、 4,4
    • B、 4,5
    • C、 5,4
    • D、 5,5
    • E、 Compilation fails.

    正确答案:E

  • 第5题:

    用液态烃作燃料时要注意什么?


    正确答案:切换液态烃作燃料,或补充部分液态烃作燃料时,换-308必须先进蒸汽,后进液态烃,燃料加热器的蒸汽不能停,确保液态烃全部汽化,加强瓦斯分离器容-326的排凝,防止带液出现二次燃烧.

  • 第6题:

    液态烃C5含量高会使汽油收率()。

    • A、上升
    • B、降低
    • C、不变
    • D、无法确定

    正确答案:B

  • 第7题:

    将硬盘C:///SUB下的全部文件(总长度超过5MB)备份到软盘,用()命令一定不可以。

    • A、BACKUP C://SUB/*.*A:
    • B、BACKUP C:///SUB A:
    • C、COPY C:///SUB A:
    • D、BACKUP C:///SUB B:

    正确答案:C

  • 第8题:

    单选题
    class Super {  public Integer getLenght() { return new Integer(4); } }  public class Sub extends Super {  public Long GetLenght() { return new Long(5); }  public static void main(String[] args) { Super sooper = new Super();  Sub sub = new Sub();  System.out.println(  sooper.getLenght().toString() + “,” +  sub.getLenght().toString() ); } }  What is the output?()
    A

     4,4

    B

     4,5

    C

     5,4

    D

     5,5

    E

     Compilation fails.


    正确答案: B
    解析: 暂无解析

  • 第9题:

    单选题
    酶促反应速度(v)达到最大反应速度(Vmax)的80%时,底物浓度[S]为
    A

    <p>1K<sub>m</sub></p>

    B

    <p>2K<sub>m</sub></p>

    C

    <p>3K<sub>m</sub></p>

    D

    <p>4K<sub>m</sub></p>

    E

    <p>5K<sub>m</sub></p>


    正确答案: E
    解析:

  • 第10题:

    单选题
    class Super { public int getLenght() { return 4; } } public class Sub extends Super { public long getLenght() { return 5; } public static void main(String[] args) {Super sooper = new Super(); Sub sub = new Sub(); System.out.println( sooper.getLenght() + “,” + sub.getLenght() ); } } What is the output? ()
    A

     4,4

    B

     4,5

    C

     5,4

    D

     5,5

    E

     Compilation fails.


    正确答案: E
    解析: 暂无解析

  • 第11题:

    单选题
    正态分布时,算术平均数、中位数、众数的关系为()
    A

    m<sub>0</sub><m<sub>e</sub><(x

    B

    m<sub>0</sub>=m<sub>e</sub>=(x

    C

    m<sub>0</sub>>m<sub>e</sub>>(x

    D

    m<sub>e</sub><m<sub>0</sub><(x


    正确答案: D
    解析:

  • 第12题:

    多选题
    下列表示中____的表示形式是正确的。
    A

    <p>U<sub>95</sub>= 1%,v<sub>eff</sub> =9                            </p>

    B

    <p>U<sub>r</sub>= 1%,k=2                            </p>

    C

    <p>u<sub>C</sub>=0. 5%                              </p>

    D

    <p>u<sub>C</sub>=±0 5%.k=1                            </p>


    正确答案: D,B
    解析:

  • 第13题:

    假定有如下的Sub过程:

    Sub Sub1(x As Single,y As single)

    t=x

    x=t/y

    y=t Mod y

    End Sub

    在窗体上画一个命令按钮,然后编写如下事件过程:

    Private Sub Command1_click()

    Dim a As Single

    Dim b As Single

    a=5

    b=4

    Sub1 a,b

    Print a;b

    End Sub

    程序运行后,单击命令按钮,输出结果为

    A.

    B.

    C.

    D.


    正确答案:D
    解析:在调用通用过程时要注意的是参数的传递方式。本题中两个变量都是以传值方式传递。根据传值方式的定义不难计算出本题结果。

  • 第14题:

    执行下面的一段C程序后,输出结果变量应为______。
    sub (int x, int y, int *z) { *z=y-x; } main() { int a, b, c; sub (10, 5, &a); sub(7, a, &b); sub(a, b, &c); printf ("%d, %d, %d\n", a, b, c); }

    A. 5, 2, 3
    B. -5, -12, -7
    C. -5, -12, -17
    D. 5, -2, -7

    答案:B
    解析:
    本题考查C语言方面的基础知识。sub()函数的作用是将形参y和x的差值存入z指向的那个内存地址,所以在sub(10,5,&a)中,10和5属于值传递,a是属于地址传递,也就是a与z指向了同一个存储单元。在执行函数后,a的值随*z变化,所以,此次函数被调用后a的值为以y-x=-5。同理可知,执行sub(7,a,&b)后,b的值发生变化,其值为-5-7=-12。执行sub(a,b,&c)后,c的值发生变化,其值为-12-(-5)=-7。

  • 第15题:

    class super {  public int getLength()  {return 4;}  }  public class Sub extends Super {  public long getLength() {return 5;}  public static void main (String[]args)  {  super sooper = new Super ();  Sub sub = new Sub();  System.out.printIn(  sooper.getLength()+ “,” + sub.getLength()   };  }  What is the output?()  

    • A、 4, 4
    • B、 4, 5
    • C、 5, 4
    • D、 5, 5
    • E、 The code will not compile.

    正确答案:E

  • 第16题:

    1. class Super {  2. private int a;  3. protected Super(int a) { this.a = a; }  4. }  .....  11. class Sub extends Super {  12. public Sub(int a) { super(a); }  13. public Sub() { this.a= 5; }  14. }  Which two, independently, will allow Sub to compile?()

    • A、 Change line 2 to: public int a;
    • B、 Change line 2 to: protected int a;
    • C、 Change line 13 to: public Sub() { this(5); }
    • D、 Change line 13 to: public Sub() { super(5); }
    • E、 Change line 13 to: public Sub() { super(a); }

    正确答案:C,D

  • 第17题:

    液态烃含C5较多时,如果作燃料用,会因C5不易气化造成瓦斯带油。


    正确答案:正确

  • 第18题:

    稳定塔底热源停会导致液态烃含大量C5。


    正确答案:错误

  • 第19题:

    在Sub过程中,可以用Return语句退出Sub过程。


    正确答案:正确

  • 第20题:

    判断题
    在Sub过程中,可以用Return语句退出Sub过程。
    A

    B


    正确答案:
    解析: 暂无解析

  • 第21题:

    单选题
    class super {  public int getLength()  {return 4;}  }  public class Sub extends Super {  public long getLength() {return 5;}  public static void main (String[]args)  {  super sooper = new Super ();  Sub sub = new Sub();  System.out.printIn(  sooper.getLength()+ “,” + sub.getLength()   };  }  What is the output?()
    A

     4, 4

    B

     4, 5

    C

     5, 4

    D

     5, 5

    E

     The code will not compile.


    正确答案: C
    解析: 暂无解析

  • 第22题:

    单选题
    下列测量结果的表示中,错误的是()。
    A

    <p>I<sub>S</sub>=10.0413A,U<sub>rel</sub>=5×10<sup>-5</sup>,k=2                            </p>

    B

    <p>I<sub>S</sub>=10.0413(1±5×10<sup>-5</sup>)A,k=2                            </p>

    C

    <p>I<sub>S</sub>=(10.0413±5×10<sup>-5</sup>)A,k=2                            </p>

    D

    <p>I<sub>S</sub>=10.0413A,U<sub>95rel</sub>=5×10<sup>-5</sup>,V<sub>eff</sub>=9                            </p>


    正确答案: A
    解析:

  • 第23题:

    多选题
    1. class Super {  2. private int a;  3. protected Super(int a) { this.a = a; }  4. }  .....  11. class Sub extends Super {  12. public Sub(int a) { super(a); }  13. public Sub() { this.a= 5; }  14. }  Which two, independently, will allow Sub to compile?()
    A

    Change line 2 to: public int a;

    B

    Change line 2 to: protected int a;

    C

    Change line 13 to: public Sub() { this(5); }

    D

    Change line 13 to: public Sub() { super(5); }

    E

    Change line 13 to: public Sub() { super(a); }


    正确答案: E,D
    解析: 暂无解析