网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

一台Y,d11连接的三相变压器,额定容量SN=630kVA,额定电压UN1/UN2=10/0.4kV,二次侧的额定电流是()。

  • A、21A
  • B、36.4A
  • C、525A
  • D、909A

参考答案

更多 “一台Y,d11连接的三相变压器,额定容量SN=630kVA,额定电压UN1/UN2=10/0.4kV,二次侧的额定电流是()。A、21AB、36.4AC、525AD、909A” 相关考题
考题 有以下程序:int sub(int n) { return(n/10+n%10); }void main(){ int x,y; scanf("%d",x); y=sub(sub(sub(x))); printf("%d\n",y);}若运行时输入:4321回车,程序的输出结果是。

考题 一台Y,d11连接的三相变压器,额定容量SN=630kVA,额定电压UN1/UN210/0.4kV,二次侧的额定电流是( )。A.21AB.36.4AC.525AD.909A

考题 下列过程说明合法的是( ) A、Sub S1(ByVal n!())B、Sub S1(n!) as IntegerC、 Function S1%(S1%)D、 Function S1(ByVal n!)

考题 一台三相电力变压器:额定容量JHl500kVA,额定电压U1N / U2N=10 / 0.4KV,高、低压边绕组均为Y连接,其高压侧的额定电流是 ( )。A.28.87AB.50AC.721.7A (提示:1.732)

考题 一台三相电力变压器,额定容量S=500KVA,额定电压U=10/0.4KV,高低压绕组均为Y连接,其低压侧的额定电流是()A 28.87AB 721.7AC 1250A(提示30。5=1.732)

考题 有如下事件过程: Private Sub Command1_Click( ) Dim m AS Integer,n AS Integer m=2:n=1 Print "m=";m;"n=";n Call TOD(m,n) Print "m=";m;"n=";n End Sub Sub TOD(x,y) x=x^2 y=y^3 End Sub 程序运行后,输出的结果为A.m=2,n=1 m=1,n=2B.m=2,n=1 m=4,n=1C.m=1,n=2 m=1,n=4D.m=1,n=2 m=2,n=4

考题 单击命令按钮时,下列的执行结果为 Private Sub Command1_Click() Dim x As Integer,y As Integer x=86:y=29 Call Proc(x,y) Print x;y End Sub Public Sub Proc(n As Integer,ByVal m As Integer) n=n Mod 10 m=m Mod 10 End SubA.12 32B.6 29C.2 3D.12 3

考题 有以下程序:int sub(int n) { return(n/10+n%10); }main(){ int x, y;scanf("% d", x);y=sub(sub(sub(x)));printf("% d\n", y);}若运行时输入:1234<回车>,程序的输出结果是【 】。

考题 有如下程序: Private Sub Commandl_Click( ) Dim i As Integer For i=1 To 2 DS Next i End Sub Sub DS( ) Dim x As Integer,m As String Static y,n X=X + 1 y=y + 1 m=m "*”:n=n"#" Print x,y,m,n End Sub 程序运行后,输出的结果是A.1 1 * #B.1 1 * #C.1 1 * # 1 1 * # 1 2 * #D.1 1 * # 1 1 * ## 1 2 * ##

考题 有以下程序int sub(int n){ return(n%10+n/10); }main(){ int x,y; scanf("%d",x); y=sub(sub(x)); printf("%d\n",y);}若运行时输入:248回车,程序的输出结果是

考题 假定有如下的Sub过程: Sub S(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 S a,b Print a,b End Sub 程序运行后,单击命令按钮,输出结果为 ______ 。A.5 4B.1 1C.1.25 4D.1.25 1

考题 在窗体上有一个命令按钮Commandl,编写事件代码如下:Private Sub Commandl Click( ) Dim X As Integer,Y As Integer x=12:y=32 Call Proc(x,Y) Debug.Print X;Y End Sub Public Sub proc(n As Integer,ByVal in As Integer) n=n Mod 10 m=m Mod 1O End Sub 打开窗体运行后,单击命令按钮,立即窗口上输出的结果是( )。A.232B.123C.22D.1232

考题 单击命令按钮时,下列程序的执行结果为 Private Sub Command1_Click() Dim x As Integer,y As Integer x=50:y=78 Call PPP(x,y) Print x;y End Sub Public Sub PPP(ByVal n As Integer,ByValm As Integer) n=n\10 m=m\10 End SubA.08B.50 78C.450D.78 50

考题 以下程序的输出结果是______。 sub(int x,int*y) {*y=*y-x;} main() { inta=1,b=2; sub(a,B) ;sub(b,A) ; printf("%d,%d\n",a,B) ; }A.1,0B.1,2C.0,1D.2,1

考题 在窗体上画一个名称为Command1的命令按钮,然后编写如下事件过程: Private Sub sub1(p,m,n) p=p + 1 : m = m + 1 : n =n + 1 Print p;m;n End Sub Private Sub Command1_Click() x=6 : y=4 : z=2 Call sub1(x,y+1,(z)) Print x;y;z End Sub 程序运行后,单击命令按钮,则窗体上第二行显示的内容是A.7 6 3B.7 4 2C.6 4 2D.4 6 3

考题 当发生Form_Click事件时,下列程序的输出结果是( )。 Private m As Integer,n As Integer Private Sub Form_Click() Dim k As Integer,p As Integer k=6:p=60 Call sub1(k,p) Print m,n,m,k,p Call sub1(k,p) Print m,n,k,p End Sub Private Sub Form_Load() m=7 n=70 End Sub Public Sub sub1(x As Integer,ByVal y As Integer) Dim m As Integer n=n+5 m=n+x+y x=x+y y=x+y End SubA.7 75 66 60 7 80 126 60B.7 75 66 60 7 75 126 60C.7 75 66 60 7 80 66 60D.7 75 66 60 7 75 66 60

考题 有如下程序: Private Sub Command1 Click() Dim a As Single Dim b As Single a=5:b=4 Call S(a,B)End Sub Sub S(x As Single,y As Single) t=x x=t\y y=t Mod y End Sub 在调用运行上述程序后,a和b的值分别为A.0 0B.1 1C.2 2D.1 2

考题 在窗体上画一个名称为Commandl的命令按钮,然后编写如下事件过程: Private Sub Command1_Click() Dim x As Integer,y As Integer x = 41: y = 54 Call sub1(x,y) x = x + 1 Print x; y End Sub Private Sub sub1(n As Integer, ByVal m As Integer) n=n Mod 10 m=m\10 End Sub 程序运行后,单击命令按钮,则窗体上显示的内容是A.41 54B.2 54C.1 3D.42 3

考题 一台三相变压器的额定容量SN=5600kVA,额定电压U1N/U2N=10/6.3kV,连接组为Y/△—11。在高压边做短路试验,加线电压为650V,测得线电流为323A,测得三相功率为21kW,则其短路电抗为()Ω。 (A)1.144 (B)2.011 (C)1.16 (D)2.002

考题 一台三相双绕组变压器,额定容量SN=100kVA,额定电压U1N/U2N=3000/400V,Yyn0连接,现将其改为3000/3400V的升压自耦变压器,改接后其额定容量与电磁容量之比为(  )。 A. 8.5 B. 7.5 C. 1.1333 D. 1

考题 一台Yd连接的三相变压器,额定容量SN=3150kVA,U1N/U2N=35kV/6.3kV,则二次侧额定电流为(  )。 A.202.07A B.288.68A C.166.67A D.151.96A

考题 有一台三相变压器额定容量为5000千伏安,额定电压为10.5/6.3千伏,Y/Δ接法,求原付绕组的额定电流?

考题 一台Y,d11(Y/Δ-11)和一台D,y11(Δ/Y-11)连接的三相变压器能否并联运行,为什么?

考题 一台三相变压器的额定电压U1N/U2N=10000/400V,绕组为Y/Δ-11接法,则其变比为()。

考题 一台三相变压器,额定电压为6000/400V,Y,y2联接,其变比为();另一台三相变压器,额定电压为6000/400V,Y,d1联接,其变比为()

考题 一台三相电力变压器:额定电压U1N/N2n=10/0.4kV,Y,Y0连接,则变压器的变比为()。A、0.04B、1.43C、25

考题 单选题一台Δ/Y连接的三相变压器,原边UN=380V;IN=12.1A;额定容量为()。A 7964KWB 7964KVAC 13794KWD 13794KVA