According to the principle of CRC calculation, given a frame-bit series M=11100111 and the
A. 111101
B. 00011
C. 11010011
D. 1101001
查看答案
The main goals of Network are sharing computer resources .The resources include hardware,
A. gateway
B. router
C. software
D. server
设E、E1、E2和E3是关系数表达式,下面列出的式子中,不满足等价变换规则的是
A. πA(σπB='010'(E))=σB='010'(πA(E))
B. (E1×E2)×E3=E1×(E2×E3)
C. σA=6(σB='010'(E))=σA=6,B='010'(E)
D. σA=6(E1×E2)=(σA=6(E1))×(σA=6(E2))
设有关系R=(A,B,C),和关系代数表达式:
Ⅰ.πA,C(σB=5(R))
Ⅱ.σB=5(πA,C(R))
Ⅲ.σπA,C(πB=5(R))
上述关系代数表达式中,与SQL语句selectdistinct A,C from R where B=5等价的是
A. 都等价
B. Ⅲ
C. Ⅱ
D. Ⅰ
在窗体上画一个名称为Labell、标题为“ViSBalBasic考试”的标签,两个名称分别为 Command1和Command2、标题分别为“开始”和“停止”的命令按钮,然后画一个名称为Timer1的计时器控件,并把其Interval属性设置为500,如图所示。
编写如下程序: Private Sub Form Load() Timerl.Enabled = False End Sub Private Sub Command1 Click() Timer1.Enabled = True End Sub Private Sub Command2 Click() Timerl.Enabled = False End Sub Private Sub Timerl Timer() If Labell.Left<Width Then Labell.Left = Labell.Left+20 Else Labell.Left = 0 End If End Sub 程序运行后单击“开始”按钮,标签在窗体中移动。 对于这个程序,以下叙述中错误的是
A. 标签的移动方向为自右向左
B. 单击“停止”按钮后再单击“开始”按钮,标签从停止的位置继续移动
C. 当标签全部移出窗体后,将从窗体的另一端出现,重新移动
D. 标签按指定的时间间隔移动