• 2022-06-14 问题

    执行下列指令序列后,完成的功能是将(DX,AX)的值____。MOV CX,4NEXT: SHR DX,1RCR AX,1LOOP NEXT

    执行下列指令序列后,完成的功能是将(DX,AX)的值____。MOV CX,4NEXT: SHR DX,1RCR AX,1LOOP NEXT

  • 2022-06-06 问题

    After the hardest job, what should be followed?( ) A: Consider an entry point that is buyable in the next 4 months and make it happen B: Consider an entry point that is reliable in the next 4 months and make it happen C: Consider an confusing point that is buyable in the next 4 months and make it happen D: Consider an entry point that it buyable in the next 3 months and make it happen

    After the hardest job, what should be followed?( ) A: Consider an entry point that is buyable in the next 4 months and make it happen B: Consider an entry point that is reliable in the next 4 months and make it happen C: Consider an confusing point that is buyable in the next 4 months and make it happen D: Consider an entry point that it buyable in the next 3 months and make it happen

  • 2022-06-15 问题

    如果$t3<$t4,则跳转到next标号处,正确的指令是( ) A: ble $t3, $t4, next B: blt $t3, $4, next C: bgt $t3, $t4, next D: bge $t3, $t4, next

    如果$t3<$t4,则跳转到next标号处,正确的指令是( ) A: ble $t3, $t4, next B: blt $t3, $4, next C: bgt $t3, $t4, next D: bge $t3, $t4, next

  • 2022-06-15 问题

    如果$t3&lt;$t4,则跳转到next标号处,正确的指令是( ) A: ble $t3, $t4, next B: blt $t3, $4, next C: bgt $t3, $t4, next D: bge $t3, $t4, next

    如果$t3&lt;$t4,则跳转到next标号处,正确的指令是( ) A: ble $t3, $t4, next B: blt $t3, $4, next C: bgt $t3, $t4, next D: bge $t3, $t4, next

  • 2021-04-14 问题

    以下程序的运行结果是 Sub s1(b() As Integer) For i = 1 To 4 b(i) = 2 * i Next i End Sub Private Sub Command1_Click() Dim a(1 To 4) As Integer For i = 1 To 4 a(i) = i + 5 Next i s1 a() For i = 1 To 4 Print a(i) Next i End Sub

    以下程序的运行结果是 Sub s1(b() As Integer) For i = 1 To 4 b(i) = 2 * i Next i End Sub Private Sub Command1_Click() Dim a(1 To 4) As Integer For i = 1 To 4 a(i) = i + 5 Next i s1 a() For i = 1 To 4 Print a(i) Next i End Sub

  • 2022-06-06 问题

    下列程序段能且只能显示1!、2!、3!、4!的值的是( )。 A: For i = 1 To 4 n = 1 For j = 1 To i n = n * j Next j MsgBox(n)Next i B: For i = 1 To 4 For j = 1 To i n = 1 n = n * j Next j MsgBox(n)Next i C: n = 1For i = 1 To 4 For j = 1 To 4 n = n * j MsgBox(n) Next jNext i D: n = 1j = 1Do While j <= 4 n = n * j j = j + 1LoopMsgBox(n)

    下列程序段能且只能显示1!、2!、3!、4!的值的是( )。 A: For i = 1 To 4 n = 1 For j = 1 To i n = n * j Next j MsgBox(n)Next i B: For i = 1 To 4 For j = 1 To i n = 1 n = n * j Next j MsgBox(n)Next i C: n = 1For i = 1 To 4 For j = 1 To 4 n = n * j MsgBox(n) Next jNext i D: n = 1j = 1Do While j <= 4 n = n * j j = j + 1LoopMsgBox(n)

  • 2022-06-06 问题

    下面____程序段不能正确显示1!、2!、3!、4!的值。 A: For I=1 To 4 n=1 For j=1 to I n=n*j Next j Print n Next I B: For I=1 To 4 For j=1 to I n=1 n=n*j Next j Print n Next I C: n=1 For j=1 to 4 n=n*j Print n Next j D: n=1:j=1 Do While j<=4 n=n*j Print n j=j+1Loop

    下面____程序段不能正确显示1!、2!、3!、4!的值。 A: For I=1 To 4 n=1 For j=1 to I n=n*j Next j Print n Next I B: For I=1 To 4 For j=1 to I n=1 n=n*j Next j Print n Next I C: n=1 For j=1 to 4 n=n*j Print n Next j D: n=1:j=1 Do While j<=4 n=n*j Print n j=j+1Loop

  • 2022-06-06 问题

    下列程序段的执行结果为______。 DimA(10,10) Fori=2 To 4 Forj=4 To 5 A(i,j)-i*j Next j Next i PrintA(2,5)+A(3,4)+A(4,5)

    下列程序段的执行结果为______。 DimA(10,10) Fori=2 To 4 Forj=4 To 5 A(i,j)-i*j Next j Next i PrintA(2,5)+A(3,4)+A(4,5)

  • 2022-07-01 问题

    在一个双链表中,在* $p$ 结点之后插入一个结点*s 的操作是[input=type:blank,size:4][/input]。 A: s-> prior =p ; p->n e x t=s ; p-> next -> prior =s ; s->n e x t=p-> next s -> next = p -> next ; B: p -> next -> prior = s ; p -> next = s ; s \rightarrow> prior = p C: p -> next = s ; s \rightarrow> prior = p ; s -> next = p -> next ; p -> next -> prior = s ; D: p -> next -> prior = s ; s -> next = p -> next ; s \rightarrow prior = p ; p -> next = s

    在一个双链表中,在* $p$ 结点之后插入一个结点*s 的操作是[input=type:blank,size:4][/input]。 A: s-> prior =p ; p->n e x t=s ; p-> next -> prior =s ; s->n e x t=p-> next s -> next = p -> next ; B: p -> next -> prior = s ; p -> next = s ; s \rightarrow> prior = p C: p -> next = s ; s \rightarrow> prior = p ; s -> next = p -> next ; p -> next -> prior = s ; D: p -> next -> prior = s ; s -> next = p -> next ; s \rightarrow prior = p ; p -> next = s

  • 2022-06-06 问题

    下列程序段能分别正确显示1!、2!、3!、4!的值的是______。 A: For i = 1 To 4 n = 1 For j = 1 To i n = n * j MsgBox(n) Next jNext i B: For i = 1 To 4 For j = 1 To i n = 1 n = n * j Next j MsgBox(n)Next i C: n = 1For i = 1 To 4 For j = 1 To 4 n = n * j MsgBox(n) Next jNext i D: n = 1j = 1Do While j &lt;= 4 n = n * j MsgBox(n) j = j + 1Loop

    下列程序段能分别正确显示1!、2!、3!、4!的值的是______。 A: For i = 1 To 4 n = 1 For j = 1 To i n = n * j MsgBox(n) Next jNext i B: For i = 1 To 4 For j = 1 To i n = 1 n = n * j Next j MsgBox(n)Next i C: n = 1For i = 1 To 4 For j = 1 To 4 n = n * j MsgBox(n) Next jNext i D: n = 1j = 1Do While j &lt;= 4 n = n * j MsgBox(n) j = j + 1Loop

  • 1 2 3 4 5 6 7 8 9 10