《建筑消防安全检测评价技术规程》规定,泡沫喷雾灭火系统的泡沫液使用期限不应小于()年,且应在有效期内
A.2
B.3
C.4
D.5
参考答案:D
万吨船顺流接近泊位时:()
A.应尽量减小靠泊角,及时倒车制动,就势靠上码头
B.在泊位外档先行掉头或用拖船协助掉头后再靠
C.不必掉头,减小靠泊角及时抛外档锚助靠
D.不必掉头,减小靠泊角和横距,使用前倒缆、尾缆制速靠泊
设在工程中定义了如下类型: Type stutype ino As Integer strname As String*20 strsex As String* 1 smark As Single End Type在窗体上正确使用这个类型的是下列哪个操作( )。
A.Sub Commandl_Click0 Dim student As Stutype With student .ino = 12 . strname = smith .strsex = .smark = 89 End With End Sub
B.Sub Commandl_Click0 Dim student As Stutype With student .ino = 12 .strname = "smith" .strscx = "男" .smark = 89 End With End Sub
C.Sub Commandl_Click0 Dim student As Stutype With Stutype ino = 12 .strname = "smith" .strsex = "男" .smark = 89 End With End Sub
D.Sub Command1 _Click() Dim student As Stutype With student .ino = 12 .strname = "smith" .strsex = "男" .smark = 89 End student End Sub