• 2021-04-14 问题

    行列式[egin{vmatrix} 3 & 1 &1 &1 \ 1 & 3 &1 &1 \ 1 & 1 &3 &1 \ 1 & 1 &1 &3end{vmatrix}=]______

    行列式[egin{vmatrix} 3 & 1 &1 &1 \ 1 & 3 &1 &1 \ 1 & 1 &3 &1 \ 1 & 1 &1 &3end{vmatrix}=]______

  • 2021-04-14 问题

    中国大学MOOC: 设有如下程序代码:Private Function Fc(ByVal n As Integer) As Integer Fc = n * Fj(5)End FunctionPrivate Function Fj(ByVal n As Integer) As Integer Fj = n + 3End FunctionPrivate Sub Command1_Click() Dim a As Integer a = 3 Form1.Print Fc(a)End Sub程序时单击命令按钮,在窗体上输出的结果为( )。

    中国大学MOOC: 设有如下程序代码:Private Function Fc(ByVal n As Integer) As Integer Fc = n * Fj(5)End FunctionPrivate Function Fj(ByVal n As Integer) As Integer Fj = n + 3End FunctionPrivate Sub Command1_Click() Dim a As Integer a = 3 Form1.Print Fc(a)End Sub程序时单击命令按钮,在窗体上输出的结果为( )。

  • 2021-04-14 问题

    中国大学MOOC: 设有如下程序代码:Private Function Fc(ByVal n As Integer) As Integer Fc = n * Fj(5)End FunctionPrivate Function Fj(ByVal n As Integer) As Integer Fj = n + 3End FunctionPrivate Sub Command1_Click() Dim a As Integer a = 3 Form1.Print Fc(a)End Sub程序时单击命令按钮,在窗体上输出的结果为( )。

    中国大学MOOC: 设有如下程序代码:Private Function Fc(ByVal n As Integer) As Integer Fc = n * Fj(5)End FunctionPrivate Function Fj(ByVal n As Integer) As Integer Fj = n + 3End FunctionPrivate Sub Command1_Click() Dim a As Integer a = 3 Form1.Print Fc(a)End Sub程序时单击命令按钮,在窗体上输出的结果为( )。

  • 2022-05-27 问题

    识别SD序列的是( )。 A: 5’-end of 18S rRNA B: 5’-end of 16S rRNA C: 3’-end of 18S rRNA D: 3’-end of 16S rRNA

    识别SD序列的是( )。 A: 5’-end of 18S rRNA B: 5’-end of 16S rRNA C: 3’-end of 18S rRNA D: 3’-end of 16S rRNA

  • 2022-06-08 问题

    下面程序段执行结果为( )。 x = 5 : y = -6If not x > 0 Then x = y – 3 Else y = x + 3End IfPrint x - y; y - x A: 3 -3 B: -6 5 C: 5 -9 D: -3 3

    下面程序段执行结果为( )。 x = 5 : y = -6If not x > 0 Then x = y – 3 Else y = x + 3End IfPrint x - y; y - x A: 3 -3 B: -6 5 C: 5 -9 D: -3 3

  • 2022-06-08 问题

    下面程序段执行结果为( )。 x = 5 : y = -6If not x > 0 Then x = y – 3 Else( ) y = x + 3End IfPrint x - y; y - x。 A: -3 3 B: -6 5 C: 3 -3 D: 5 -9

    下面程序段执行结果为( )。 x = 5 : y = -6If not x > 0 Then x = y – 3 Else( ) y = x + 3End IfPrint x - y; y - x。 A: -3 3 B: -6 5 C: 3 -3 D: 5 -9

  • 2022-06-30 问题

    题目08. 在\(\mathbb{R}^2\)中,先平移\([1,1]^T\),再旋转\(\frac{\pi}{3}\),在伸长2倍的映射是: A: \(f\begin{pmatrix}x\\y\end{pmatrix}=\begin{pmatrix}x+\sqrt{3}y+1-\sqrt{3}\\ \sqrt{3}x-y+1+\sqrt{3}\end{pmatrix}\) B: \(f\begin{pmatrix}x\\y\end{pmatrix}=\begin{pmatrix}x-\sqrt{3}y+1-\sqrt{3}\\ \sqrt{3}x+y+1+\sqrt{3}\end{pmatrix}\) C: \(f\begin{pmatrix}x\\y\end{pmatrix}=\begin{pmatrix}\sqrt{3}x+y+1-\sqrt{3}\\ x-\sqrt{3}y+1+\sqrt{3}\end{pmatrix}\) D: \(f\begin{pmatrix}x\\y\end{pmatrix}=\begin{pmatrix} \sqrt{3}x-y+1-\sqrt{3}\\ x+\sqrt{3}y+1+\sqrt{3}\end{pmatrix}\)

    题目08. 在\(\mathbb{R}^2\)中,先平移\([1,1]^T\),再旋转\(\frac{\pi}{3}\),在伸长2倍的映射是: A: \(f\begin{pmatrix}x\\y\end{pmatrix}=\begin{pmatrix}x+\sqrt{3}y+1-\sqrt{3}\\ \sqrt{3}x-y+1+\sqrt{3}\end{pmatrix}\) B: \(f\begin{pmatrix}x\\y\end{pmatrix}=\begin{pmatrix}x-\sqrt{3}y+1-\sqrt{3}\\ \sqrt{3}x+y+1+\sqrt{3}\end{pmatrix}\) C: \(f\begin{pmatrix}x\\y\end{pmatrix}=\begin{pmatrix}\sqrt{3}x+y+1-\sqrt{3}\\ x-\sqrt{3}y+1+\sqrt{3}\end{pmatrix}\) D: \(f\begin{pmatrix}x\\y\end{pmatrix}=\begin{pmatrix} \sqrt{3}x-y+1-\sqrt{3}\\ x+\sqrt{3}y+1+\sqrt{3}\end{pmatrix}\)

  • 2022-06-09 问题

    有如下程序,运行后的输出结果是 ______。 a = 5 If a <= 3 Then Print 3; End If If a <= 4 Then Print 4; End If If a <= 5 Then Print 5; End If If a <= 6; Print 6; End If A: 3456 B: 456 C: 56 D: 6

    有如下程序,运行后的输出结果是 ______。 a = 5 If a <= 3 Then Print 3; End If If a <= 4 Then Print 4; End If If a <= 5 Then Print 5; End If If a <= 6; Print 6; End If A: 3456 B: 456 C: 56 D: 6

  • 2022-06-19 问题

    下列for循环语句形式正确的有( )。 A: for 循环变量=表达式1 : 表达式2 : 表达式3 循环体语句 end B: for 循环变量=表达式1 : 表达式2 : 表达式3 for 循环变量=表达式1 : 表达式2 : 表达式3 循环体语句 end end C: for 循环变量==表达式1 : 表达式2 : 表达式3 循环体语句 end D: for 循环变量==表达式1 : 表达式2 : 表达式3 for 循环变量==表达式1 : 表达式2 : 表达式3 循环体语句 end end

    下列for循环语句形式正确的有( )。 A: for 循环变量=表达式1 : 表达式2 : 表达式3 循环体语句 end B: for 循环变量=表达式1 : 表达式2 : 表达式3 for 循环变量=表达式1 : 表达式2 : 表达式3 循环体语句 end end C: for 循环变量==表达式1 : 表达式2 : 表达式3 循环体语句 end D: for 循环变量==表达式1 : 表达式2 : 表达式3 for 循环变量==表达式1 : 表达式2 : 表达式3 循环体语句 end end

  • 2022-06-06 问题

    以下程序不正确的是 ( ) A: n=input('n=')switch rem(n,3)case 0; A=3*ncase 2; A=2*ncase 1; A=n end B: n=input('n=')if rem(n,3)==0; A=3*n elseif rem(n,3)==2; A=2*n else A=n end end C: n=input('n=')if rem(n,3)==0; A=3*nelseif rem(n,3)==2; A=2*nelse A=n end D: n=input('n=')switch rem(n,3)case 0; A=3*ncase 2; A=2*notherwise; A=n end

    以下程序不正确的是 ( ) A: n=input('n=')switch rem(n,3)case 0; A=3*ncase 2; A=2*ncase 1; A=n end B: n=input('n=')if rem(n,3)==0; A=3*n elseif rem(n,3)==2; A=2*n else A=n end end C: n=input('n=')if rem(n,3)==0; A=3*nelseif rem(n,3)==2; A=2*nelse A=n end D: n=input('n=')switch rem(n,3)case 0; A=3*ncase 2; A=2*notherwise; A=n end

  • 1 2 3 4 5 6 7 8 9 10