更多“标准额定输出功率(standard rated output)”相关问题
  • 第1题:

    接入信道中,导频信道的开环输出功率为mean pilot channel output power,数据信道的开环输出功率为meandatachanneloutputpower,则接入信导前缀中的导频信道输出功率为()

    A.mean pilot channel output power-mean data channel output power

    B.mean pilot channel output power+mean data channel output power

    C.mean pilot channel output power-0.5*mean data channel output power

    D.mean pilot channel output power+0.5*mean data channel output power


    参考答案:B

  • 第2题:

    UPS效率及输入功率因数,说法正确的是( )。

    (A)额定输出功率3kVA以上时,高频机变换效率≥90% (B)额定输出功率3kVA以上时,输入功率因数≥0.8 (C)额定输出功率3kVA及以下时,高频机变换效率≥85% (D)额定输出功率3kVA以上时,工频机变换效率≥80%

    答案:A,C,D
    解析:

  • 第3题:

    额定转速(rated speed)


    正确答案:在额定条件下功率输出轴的转速。

  • 第4题:

    What will be the result of attempting to run the following program?()   public class Qaa75 {   public static void main(String args[]) {   String[][][] arr = {   { {}, null },   { { "1", "2" }, { "1", null, "3" } },   {},   { { "1", null } }  };   System.out.println(arr.length + arr[1][2].length);   }   }  

    • A、The program will terminate with an ArrayIndexOutOfBoundsException.
    • B、The program will terminate with a NullPointerException.
    • C、4 will be written to standard output.
    • D、6 will be written to standard output.
    • E、7 will be written to standard output.

    正确答案:A

  • 第5题:

    编挂列车额定用电()总和不得超过发电车额定输出功率。


    正确答案:功率

  • 第6题:

    额定转速和最大输出功率范围内(包括最大输出功率)的迟缓率不应超过额定转速的0.1%。


    正确答案:正确

  • 第7题:

    太阳电池组件方阵在标准测试条件下的额定最大输出功率称为()。


    正确答案:峰瓦

  • 第8题:

    接入信道中,导频信道的开环输出功率为mean pilot channel output power,数据信道的开环输出功率为meandatachanneloutputpower,则接入信导前缀中的导频信道输出功率为()

    • A、mean pilot channel output power-mean data channel output power
    • B、mean pilot channel output power+mean data channel output power
    • C、mean pilot channel output power-0.5*mean data channel output power
    • D、mean pilot channel output power+0.5*mean data channel output power

    正确答案:B

  • 第9题:

    Older video cards used S-video to output to a TV. This standard has been replaced by:()

    • A、FireWire.
    • B、SCSI.
    • C、coaxial.
    • D、HDMI.

    正确答案:D

  • 第10题:

    按GB18565-2001标准的规定,整车动力性检测的判定限值是在规定检测工况下,采用()作为驱动轮输出功率的限值。

    • A、校正驱动轮输出功率
    • B、发动机输出功率
    • C、校正驱动轮输出功率与相应的发动机输出功率的百分比
    • D、发动机额定功率

    正确答案:C

  • 第11题:

    单选题
    What will be the result of attempting to compile and run the following code?()   public class Q6b0c {   public static void main(String args[]) {  int i = 4;  float f = 4.3;   double d = 1.8;   int c = 0;   if (i == f) c++;   if (((int) (f + d)) == ((int) f + (int) d))  c += 2;   System.out.println(c);   }   }
    A

    The code will fail to compile.

    B

    0 will be written to the standard output.

    C

    1 will be written to the standard output.

    D

    2 will be written to the standard output.

    E

    3 will be written to the standard output.


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

  • 第12题:

    单选题
    What will be the result of attempting to run the following program?()   public class Qaa75 {   public static void main(String args[]) {   String[][][] arr = {   { {}, null },   { { "1", "2" }, { "1", null, "3" } },   {},   { { "1", null } }  };   System.out.println(arr.length + arr[1][2].length);   }   }
    A

    The program will terminate with an ArrayIndexOutOfBoundsException.

    B

    The program will terminate with a NullPointerException.

    C

    4 will be written to standard output.

    D

    6 will be written to standard output.

    E

    7 will be written to standard output.


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

  • 第13题:

    Most operating systems have a standard set of ( ) to handle the processing of all input and output instructions.

    A.SPREADSHEET
    B.CONTROL INSTRUCTIONS
    C.I/O OPERATION
    D.DATA TABLE

    答案:B
    解析:
    翻译:多数操作系统都有一套标准的(71)去处理所有输入和输出指令。

    A. 电子表格 B. 控制指令 C. 输入输出系统 D. 数据表

  • 第14题:

    单台用电设备的设备功率中,整流变压器的设备功率是指( )。

    A、整流后的输入功率
    B、整流后的输出功率
    C、额定输出功率
    D、额定直流输出功率

    答案:D
    解析:
    设备功率的确定

  • 第15题:

    GDCB参数Rated mtr i Arms用于决定过电流保护和电梯额定运行电流值()。


    正确答案:正确

  • 第16题:

    What will be the result of attempting to compile and run the following code?()   public class Q6b0c {   public static void main(String args[]) {  int i = 4;  float f = 4.3;   double d = 1.8;   int c = 0;   if (i == f) c++;   if (((int) (f + d)) == ((int) f + (int) d))  c += 2;   System.out.println(c);   }   }  

    • A、The code will fail to compile.
    • B、0 will be written to the standard output.
    • C、1 will be written to the standard output.
    • D、2 will be written to the standard output.
    • E、3 will be written to the standard output.

    正确答案:A

  • 第17题:

    风机的电能利用率是风机的有效功率与电动机的()之比。

    • A、输入功率;
    • B、输出功率;
    • C、额定功率;
    • D、额定输出功率

    正确答案:B

  • 第18题:

    对整流器来讲,当环境温度一定时,最恶劣的运行情况为()。

    • A、最高交流输入电压,最大输出功率
    • B、最高交流输入电压,额定输出功率
    • C、最低交流输入电压,最大输出功率
    • D、最低交流输入电压,额定输出功率

    正确答案:C

  • 第19题:

    额定功率密度 rated power density


    正确答案: 在额定功率下单位体积堆芯所产生的热功率。

  • 第20题:

    定桨距风机,在风速超过额定风速后,输出功率小于额定功率。


    正确答案:正确

  • 第21题:

    What will be the result of attempting to compile and run the following program?()   public class Q28fd {   public static void main(String args[]) {   int counter = 0;   l1:   for (int i=10; i<0; i--) {   l2:  int j = 0;   while (j < 10) {   if (j > i) break l2;   if (i == j) {   counter++;   continue l1;   }   }   counter--;   }   System.out.println(counter);  }   }   

    • A、The program will fail to compile.
    • B、The program will not terminate normally.
    • C、The program will write 10 to the standard output.
    • D、The program will write 0 to the standard output.
    • E、The program will write 9 to the standard output.

    正确答案:A

  • 第22题:

    单选题
    What will be the result of attempting to compile and run the following program?()   public class Q28fd {   public static void main(String args[]) {   int counter = 0;   l1:   for (int i=10; i i) break l2;   if (i == j) {   counter++;   continue l1;   }   }   counter--;   }   System.out.println(counter);  }   }
    A

    The program will fail to compile.

    B

    The program will not terminate normally.

    C

    The program will write 10 to the standard output.

    D

    The program will write 0 to the standard output.

    E

    The program will write 9 to the standard output.


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

  • 第23题:

    单选题
    Older video cards used S-video to output to a TV. This standard has been replaced by:()
    A

    FireWire.

    B

    SCSI.

    C

    coaxial.

    D

    HDMI.


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