• 2022-10-30 问题

    写一个文法G,使其语言为不以0开头的偶数集。 A: G[S]:S→AB|BA→AD|CB→2|4|6|8|0C→1|3|5||7|9|B B: G[S]:S→AB|BA→AD|CB→1|2|3|4|5|6|7|8|9C→2|4|6|8|0 C: G[S]:S→AB|BA→AD|CB→2|4|6|8|0C→1|2|3|4|5|6|7|8|9D→0|C D: G[S]:S→AB|BA→AD|DB→2|4|6|8|0D→1|2|3|4|5|6|7|8|9|0

    写一个文法G,使其语言为不以0开头的偶数集。 A: G[S]:S→AB|BA→AD|CB→2|4|6|8|0C→1|3|5||7|9|B B: G[S]:S→AB|BA→AD|CB→1|2|3|4|5|6|7|8|9C→2|4|6|8|0 C: G[S]:S→AB|BA→AD|CB→2|4|6|8|0C→1|2|3|4|5|6|7|8|9D→0|C D: G[S]:S→AB|BA→AD|DB→2|4|6|8|0D→1|2|3|4|5|6|7|8|9|0

  • 2022-06-09 问题

    以下代码的运行结果是( )。import numpy as np a=np.arange(8).reshape(2,4) s=a.sum(axis=0) print(s) A: [6 22] B: 28 C: 36 D: [4 6 8 10]

    以下代码的运行结果是( )。import numpy as np a=np.arange(8).reshape(2,4) s=a.sum(axis=0) print(s) A: [6 22] B: 28 C: 36 D: [4 6 8 10]

  • 2021-04-14 问题

    设有如下代码段 1 String s = null; 2 if ( s != null & s.length() > 0) 3 System.out.println("s != null & s.length() > 0"); 4 if ( s != null && s.length() > 0) 5 System.out.println("s != null & s.length() > 0"); 6 if ( s != null || s.length() > 0) 7 System.out.println("s != null & s.length() > 0"); 8 if ( s != null | s.length() > 0) 9 System.out.println("s != null | s.length() > 0"); 哪些行将抛出空指针异常?

    设有如下代码段 1 String s = null; 2 if ( s != null & s.length() > 0) 3 System.out.println("s != null & s.length() > 0"); 4 if ( s != null && s.length() > 0) 5 System.out.println("s != null & s.length() > 0"); 6 if ( s != null || s.length() > 0) 7 System.out.println("s != null & s.length() > 0"); 8 if ( s != null | s.length() > 0) 9 System.out.println("s != null | s.length() > 0"); 哪些行将抛出空指针异常?

  • 2022-06-12 问题

    298K时,下列热力学函数等于零的是( )。(A);(B)△fH(I2,g);(C)△fH(H+,aq);(D)△fG(金刚石,s)。 A: S(O2,g) B: △fH(I2,g) C: △fH(I2,g) D: △fG(金刚石,s)

    298K时,下列热力学函数等于零的是( )。(A);(B)△fH(I2,g);(C)△fH(H+,aq);(D)△fG(金刚石,s)。 A: S(O2,g) B: △fH(I2,g) C: △fH(I2,g) D: △fG(金刚石,s)

  • 2022-06-12 问题

    298K时,下列热力学函数等于零的是()。(A);(B)△fH(I2,g);(C)△fH(H+,aq);(D)△fG(金刚石,s)。 A: S(O2,g) B: △fH(I2,g) C: △fH(H+,aq) D: △fG(金刚石,s)

    298K时,下列热力学函数等于零的是()。(A);(B)△fH(I2,g);(C)△fH(H+,aq);(D)△fG(金刚石,s)。 A: S(O2,g) B: △fH(I2,g) C: △fH(H+,aq) D: △fG(金刚石,s)

  • 2022-06-18 问题

    s="abcd'12'34",下面()可以输出字符'12'34。 A: s[5:8] B: s[4:8] C: s[-1:-6] D: s[-6:]

    s="abcd'12'34",下面()可以输出字符'12'34。 A: s[5:8] B: s[4:8] C: s[-1:-6] D: s[-6:]

  • 2022-06-12 问题

    写出以下程序的运行结果:int main(){ int m,s,i; for(m=6;m<8;m++){ s=0; for(i=1;i<m;i++) if((m%i)==0) s=s+i; if(s==m) printf(“%d”,m);}return 0;}

    写出以下程序的运行结果:int main(){ int m,s,i; for(m=6;m<8;m++){ s=0; for(i=1;i<m;i++) if((m%i)==0) s=s+i; if(s==m) printf(“%d”,m);}return 0;}

  • 2022-07-24 问题

    标准状态下,稳定单质C(石墨)的()为零。 A: △fHΘm、SΘm B: △fHΘm、△fGΘm、SΘm C: SΘm D: △fGΘm、△fHΘm

    标准状态下,稳定单质C(石墨)的()为零。 A: △fHΘm、SΘm B: △fHΘm、△fGΘm、SΘm C: SΘm D: △fGΘm、△fHΘm

  • 2022-05-29 问题

    (16) 下面循环的执行次数是( )char *s="\ta\018bc";for(;*s!='\0';s++)printf("*"); A: 5 B: 8 C: 7 D: 6

    (16) 下面循环的执行次数是( )char *s="\ta\018bc";for(;*s!='\0';s++)printf("*"); A: 5 B: 8 C: 7 D: 6

  • 2022-06-15 问题

    写出下列指令运行结果A=reshape(1:16,2,8)reshape(A,4,4)s=&#91;1 3 6 8 9 11 14 16&#93;;A(s)=0

    写出下列指令运行结果A=reshape(1:16,2,8)reshape(A,4,4)s=&#91;1 3 6 8 9 11 14 16&#93;;A(s)=0

  • 1 2 3 4 5 6 7 8 9 10