单项选择题

数据库的故障恢复一般是由( )来执行恢复。

A.电脑用户
B.数据库恢复机制
C.数据库管理员
D.系统普通用户
<上一题 目录 下一题>
热门 试题

单项选择题
要求当鼠标在图片框Picture1中移动时,立即在图片中显示鼠标的位置坐标。下面能正确实现上述功能的事件过程是( )。
A.Private Sub Picture1_MouseMove(Button As Integer,Shift As integer,XAs Single,Y As Single)
Picture1.Print X,Y
EndSub
B.Private Sub Picture1_MouseMove(Button As Integer,Shift As Integer,XAs Single,Y As Single)
Print X,Y
EndSub
C.Private Sub Picture1_MouseDown(Button As Integer,Shift As Integer,XAs Single,Y As Single)
Picture.Print X,Y
End Sub
D.Private Sub Form_MouseMove(Button As Integer Shift As Integer,XAs Single,Y As Single)
Picture1.Print X,Y
End Sub
单项选择题
使用语句Dim A(1 To 10)As Integer声明数组A后,以下叙述正确的是( )。
A.A数组中的所有元素值为0
B.A数组中的所有元素值不确定
C.A数组中的所有元素值为Empty
D.执行语句“Erase A”后,A数组中的所有元素值为Null
相关试题
  • 在窗体上画一个命令按钮Command1,然后编...
  • 窗体中有一组文件系统控件,分别是驱动器列...
  • 以下程序用于在带垂直滚动条的文本框Text1...
  • 列表框中有若干项,现在用Timer控件控制时...
  • 组合框是组合了文本框和列表框的特性而组成...