单项选择题

利用E-R模型进行数据库的概念设计,可以分成三步:首先设计局部E-R模型,然后把各个局部E-R模型综合成一个全局的模型,最后得到最终的E-R模型需对全局E-R模型进行

A.简化
B.结构化
C.最小化
D.优化
<上一题 目录 下一题>
热门 试题

单项选择题
假定有如下事件过程: Private Sub Form_MouseDown(Button As Integer,Shift As Integer,X As Sinsle,Y As Single) If Button=2 then PopupMenu popForm End If End Sub 则以下描述中错误的是
A.该过程的功能是弹出一个菜单
B.popForm是在菜单编辑器中定义的弹出式菜单的名称
C.参数X、Y指明鼠标的当前位置
D.Button=2表示按下的是鼠标左键
单项选择题
以下能够正确计算n!的程序是
A.Private Sub Command1_Chck( ) n=5:x=1 Do x=x*i i=i+1 Loop While i<n Print x End Sub
B.Private Sub Command1_Click( ) n=5:x=1:i=l Do x=x*i i=i+1 Loop While i<n Print x End Sub
C.Private Sub Command1_Click( ) n=5:x=1:i=l Do x=x*i i=i+1 Loop While i<=n Print x End Sub
D.Private Sub Command1_Click( ) n=5:x=1:i=l Dox=x*i i=i+1 Loop While i>n Print x End Sub
相关试题
  • 在窗体上画一个名称为Command1的命令按钮...
  • 假定有以下函数过程: Function Fun(S ...
  • 窗体上有两个名称分别为Text1、Text2的文...
  • 在窗体上画一个名称为Command1的命令按钮...
  • 在窗体上画一个名称为Command1的命令按钮...