仔细阅读下面的程序 假设该程序在执行过程中输入855060855078,则其输出结果是() A: 8/5:1end8/5:1end7/8:0 B: 8/5:1endend C: 8/5:1end8/5:1end D: 8/5:1end8/5:1
仔细阅读下面的程序 假设该程序在执行过程中输入855060855078,则其输出结果是() A: 8/5:1end8/5:1end7/8:0 B: 8/5:1endend C: 8/5:1end8/5:1end D: 8/5:1end8/5:1
已知A=[1 2 3 ;4 5 6; 7 8 9]; 那么A(2:end,2:end)=?
已知A=[1 2 3 ;4 5 6; 7 8 9]; 那么A(2:end,2:end)=?
以下代码的执行结果是( )。for i in range(4): print(2**i,end = " ") A: 1 2 4 8 B: 2 4 8 16 C: 1 2 4 8 16 D: 1 2 4
以下代码的执行结果是( )。for i in range(4): print(2**i,end = " ") A: 1 2 4 8 B: 2 4 8 16 C: 1 2 4 8 16 D: 1 2 4
以下代码的输出结果是() 1 a = { 'a': 'b',1:2,7:8} 2 for k in a: 3 print(k,end= ',') A: 'a':'b',1:2,7:8, B: a,1,7, C: b,2,8, D: k
以下代码的输出结果是() 1 a = { 'a': 'b',1:2,7:8} 2 for k in a: 3 print(k,end= ',') A: 'a':'b',1:2,7:8, B: a,1,7, C: b,2,8, D: k
球面 $x^2+y^2+z^2=9$ 与平面 $x+z=1$ 的交线在 $xoy$面上的投影方程为( ). A: $\begin{equation}\begin{cases} x^2+y^2=9\\x=1 \end{cases}\end{equation}$ B: $2x^2-2x+y^2=8$ C: $\begin{equation}\begin{cases}2x^2-2x+y^2=8\\z=0\end{cases}\end{equation}$ D: $\begin{equation}\begin{cases}x^2+y^2=9\\z=0\end{cases}\end{equation}$
球面 $x^2+y^2+z^2=9$ 与平面 $x+z=1$ 的交线在 $xoy$面上的投影方程为( ). A: $\begin{equation}\begin{cases} x^2+y^2=9\\x=1 \end{cases}\end{equation}$ B: $2x^2-2x+y^2=8$ C: $\begin{equation}\begin{cases}2x^2-2x+y^2=8\\z=0\end{cases}\end{equation}$ D: $\begin{equation}\begin{cases}x^2+y^2=9\\z=0\end{cases}\end{equation}$
循环执行次数最多的是 A: for i=1:2 end B: for i=1:-2 end C: for i=-1:2 end D: for i=-2:-1 end
循环执行次数最多的是 A: for i=1:2 end B: for i=1:-2 end C: for i=-1:2 end D: for i=-2:-1 end
下列哪个矩阵的列空间,行空间,零空间,左零空间维数之和最大? A: \(\begin{pmatrix} 1 & -1 & 1 \\ -1 & 1 & 1 \\ 1 & -1 & 1 \\ 1 & 1 & 1 \end{pmatrix}\) B: \(\begin{pmatrix} -1 & 1 \\ 1 & 1 \\ -1 & 1 \end{pmatrix}\) C: \(\begin{pmatrix} 1 & 1 \\ 1 & 1 \end{pmatrix}\) D: \(\begin{pmatrix} 1 & 2 & 9 \\ 9 & 1 & 8 \\ 1 & 0 & 1 \end{pmatrix}\)
下列哪个矩阵的列空间,行空间,零空间,左零空间维数之和最大? A: \(\begin{pmatrix} 1 & -1 & 1 \\ -1 & 1 & 1 \\ 1 & -1 & 1 \\ 1 & 1 & 1 \end{pmatrix}\) B: \(\begin{pmatrix} -1 & 1 \\ 1 & 1 \\ -1 & 1 \end{pmatrix}\) C: \(\begin{pmatrix} 1 & 1 \\ 1 & 1 \end{pmatrix}\) D: \(\begin{pmatrix} 1 & 2 & 9 \\ 9 & 1 & 8 \\ 1 & 0 & 1 \end{pmatrix}\)
语句while(!end);中的条件!end等价于() A: end==0 B: end!=1 C: end!=0 D: -end
语句while(!end);中的条件!end等价于() A: end==0 B: end!=1 C: end!=0 D: -end
下列哪个if语句不正确: if a=1 then b=1 else b=2|if a=1 then b=1 else if b=2 then b=2 end if|if a=1 then b=1 else if b=2 then b=2 end if end if|if a=1 then b=1 elseif b=2 then b=2 end if
下列哪个if语句不正确: if a=1 then b=1 else b=2|if a=1 then b=1 else if b=2 then b=2 end if|if a=1 then b=1 else if b=2 then b=2 end if end if|if a=1 then b=1 elseif b=2 then b=2 end if
运行以下程序输出的结果是:( )。for i in range(6):if i%2==0:continueelif i%3:print(i,end=' ')else: print('end') A: 1 B: 1 end C: 1 5 end D: 1 5
运行以下程序输出的结果是:( )。for i in range(6):if i%2==0:continueelif i%3:print(i,end=' ')else: print('end') A: 1 B: 1 end C: 1 5 end D: 1 5