网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
The single acting cylinder is the simplest form where pressure is applied to the full area of the piston head to move the load through piston rod extensionThe load causes rod () when the drive pressure is released.
A
contraction
B
retraction
C
expansion
D
shrinkage
参考答案
参考解析
解析:
暂无解析
更多 “单选题The single acting cylinder is the simplest form where pressure is applied to the full area of the piston head to move the load through piston rod extensionThe load causes rod () when the drive pressure is released.A contractionB retractionC expansionD shrinkage” 相关考题
考题
执行下列程序后,鼠标单击窗体,输出结果为 。Private Sub Form_Click()Print "Click";End SubPrivate Sub Form_MouseDown(Button As Integer, Shift _As Integer, X As Single, Y As Single)Print "Donw"End SubPrivate Sub Form_MouseUp(Button As Integer, Shift _As Integer, X As Single, Y As Single)Print " Up"End Sub( )。A.DownUpClickB.ClickDownUpC.DownClickUpD.UpDownClick
考题
检索选修课程"C2”的学生中成绩最高的学生的学号,正确的SELECT语句是______。A.SELECT S# FORM. SC WHERE C#="C2"AND GRADE>=(SELECT GRADE FORM. SC WHERE C#="C2")B.SELECT S# FORM. SC WHERE C#="C2"AND GRADE IN(SELECT GRADE FORM. SC) WHERE C#="C2"C.SELECT S# FORM. SC WHERE C#="C2"AND GRADE NOT IN(SELECT GRADE FORM. SC WHERE C#="C2")D.SELECT S# FORM. SC WHERE C#="C2"AND GRADE>=ALL(SELECT GRADE FORM. SC WHERE C#="C2")
考题
假定已经在菜单编辑器中建立了窗体的弹出式菜单,其顶级菜单项的名称为a1,其“可见”属性为False。程序运行后,单击鼠标左键或右键都能弹出菜单的事件过程是A.Private Sub Form_MouseDown(Button As Integer,_ Shift As Integer,X As Single,Y As Single) If Button=1 And Button=2 Then PopupMenu a1 End If End SubB.Private Sub Form_MouseDown(Button As Integer,_ Shift As Integer,X As Single,Y As Single) PopupMenu a1 End SubC.Private Sub Form_MousoDown(Button As Integer,_ Shift As Integer,X As Single,Y As Single) If Button=1 Then PopupMenu a1 End If End SubD.Private Sub Form_MouseDown(Button As Integer,_ Shift As Integer,X As Single,Y As Single) If Buaon=2 Then PopupMenu a1 End If End Sub
考题
有如下SQL SELECT语句SELECT * FORM. 工资表 WHERE 基本工资=2000 AND 基本工资=1500下列与该语句等价的是A.SELECT * FORM. 工资表 WHERE 基本工资 BETWEEN 1500 AND 2000B.SELECT * FORM. 工资表 WHERE 基本工资 BETWEEN 2000 AND 1500C.SELECT * FORM. 工资表 WHERE 基本工资 FROM 1500 INTO 2000D.SELECT * FORM. 工资表 WHERE 基本工资 FROM 2000 INTO 1500
考题
有下列SQLSELECT语句:SELECT*FORM. 成绩表 WHERE 物理 BETWEEN 80 AND 90下列与该语句等价的是( )。A.SELECT*FORM. 成绩表 WHERE物理<=90AND 物理>=80B.SELECT*FORM. 成绩表 WHERE物理<90AND 物理>80C.SELECT*FORM. 成绩表 WHERE物理>=90AND 物理<=80D.SELECT*FORM. 成绩表 WHERE物理>90 AND 物理<80
考题
___endorsement is the simplest and the most commonly used form. of endorsement.
A.blankB.restrictiveC.specialD.qualified
考题
下面程序是由鼠标事件在窗体上画图,如果按下鼠标可以画图,双击窗体则可以清除所画图形。补充完整下面的程序。首先在窗体层定义如下变量:Dim PaintStart As Boolean编写如下事件过程:Private Sub Form_Load()DrawWidth=2ForeColor=vbGreenEnd SubPrivate Sub Form_MouseDown(Button As Integer,Shift As Integer,X AS Single,Y AS Single)PaintStart=TrueEnd SubPrivate Sub Form_MouseMove(Button As Integer,Shift As Integer,X As Single,Y As Single)If PaintStart ThenPSet(X,Y)End IfEnd SubPrivate Sub Form_MouseUp(Button As Integer,Shift As Integer,X As Single,Y As Single)End SubPrivate Sub Form_DblClick()ClsEnd Sub
考题
设已经在菜单编辑器中设计了窗体的快捷菜单,其顶级菜单为Bt,取消其“可见”属性,运行时,在以下事件过程中,可以使快捷菜单相应鼠标右键菜单的是A.Private Sub Form_MouseDown(Button As Integer, Shift As Integer,_ X As Single, Y As Single) If Button=2 Then PopupMenu Bt, 2 End SubB.Private Sub Form_MouseDown(Button As Integer, Shift As Integer, _ X As Single, Y As Single) PopupMenu Bt End SuhC.Private Sub Form. MouseDown(Button As Integer, Shift As Integer, _ X As Single, Y As Single) PopupMenu Bt,0 End SubD.Private Sub Form_MouseDown(Button As Integer, Shift As Integer, _ X As Single, Y As Single) If (Button=vbLeftButton) Or ( Button=vbRightButton) Then PopupMenu Bt End Sub
考题
有如下SQL SELECT语句SELECT*FORM工资表WHERE基本工资=1500下列与该语句等价
有如下SQL SELECT语句 SELECT*FORM工资表WHERE基本工资<=2000 AND基本工资>=1500下列与该语句等价的A.SELECT * FORM. 工资表 WHERE 基本工资 BETWEEN 1500 AND 2000B.SELECT * FORM. 工资表 WHERE 基本工资 BETWEEN 2000 AND 1500C.SELECT * FORM. 工资表 WHERE 基本工资 FROM 1500 INTO 2000D.SELECT * FORM. 工资表 WHERE 基本工资 FROM 2000 INT0 1500
考题
编写如下代码:Dim Flag As BooleanPrivate Sub Form. MouseDown (Button As Integer,Shift As Integer, X As Single, Y As Single)Flag = TrueEnd SubPrivate Sub Form. MouseMove (Button As Integer,Shift As Integer, X As Single, Y As Single)Flag = FalseEnd SubPrivate Sub Form_ MouseUp (Button As Integer,Shift As Integer, X As Single, Y As Single)If Flag = False ThenPrint "DDDD"End IfEnd Sub程序运行后,如果想在窗体上输出DDDD,则应执行的操作为______。
考题
有下列SQL SELECT语句: SELECT * FORM. 成绩表 WHERE 物理 BETWEEN 80 AND 90 下列与该语句等价的( )。A.SELECT * FORM. 成绩表 WHERE 物理<=90 AND 物理 >=80B.SELECT * FORM. 成绩表 WHERE 物理 <90 AND 物理>80C.SELECT * FORM. 成绩表 WHERE 物理>=90 AND 物理<=80D.SELECT * FORM. 成绩表 WHERE 物理>90 AND 物理<80
考题
执行下列程序后,鼠标单击窗体,输出结果为 Private Sub Form_Click() Print"Click": End Sub Private Sub Form_MouseDown(Button As Integer,Shift_As Integer,X As Single,Y As Single) Print"Donw" End Sub Private Sub Form_MouseUp(Button As Integer,Shift_As Integer,X As Single,Y As Single) Print"Up" End SubA.DownUpClickB.CfickDownUpC.DownClickUpD.UpDownClick
考题
以下用法中正确的是()ARS = conn.Execute(“SELECT *FORM product”)BSet RS = conn.Execute (“SELECT *FORM product”)CConn.Execute (“DELETE *FORM product WHERE ID=132”)DConn.Ececute “DELETE *FORM product WHERE ID=132”
考题
单选题In a single acting, four-stroke/cycle diesel engine, the power impulse in an individual cylinder occurs ()A
once every crankshaft revolutionB
once every two crankshaft revolutionsC
once every piston strokeD
twice every piston stroke
考题
单选题A number of cylinder liners are enclosed in one cast iron casing to form a ().A
cylinder coverB
cylinder blockC
cylinder frameD
bed-plate
考题
单选题以下用法中正确的是()A
RS = conn.Execute(“SELECT *FORM product”)B
Set RS = conn.Execute (“SELECT *FORM product”)C
Conn.Execute (“DELETE *FORM product WHERE ID=132”)D
Conn.Ececute “DELETE *FORM product WHERE ID=132”
考题
单选题For Vee-form engines, () is shaped to given two slopping surface on which () are placed at the correct relative angle to each other.A
the bottom of the column;the cylinder blocksB
the top of the column;the cylinder headsC
the top of the column;the cylinder blocksD
the bottom of the column;the cylinder heads
考题
单选题Proper lubrication of the main bearing is more easily obtained in a single acting four-stroke/cycle diesel engine than in a single acting two-stroke/cycle diesel engine because ()A
bearing pressure in a four-stroke/cycle acting single diesel engine is continually reversedB
bearing pressure in a two-stroke/cycle single acting diesel engine is continually reversedC
the maximum bearing pressure is higher in a single acting two-stroke/cycle diesel engineD
two-stoke/cycle diesel engines require more complicated lubrication piping
考题
单选题The cylinder head, cylinder liner and () form the combustion chamber.A
frameB
pistonC
crankcaseD
explosion plate
考题
单选题A single piece() fitted with bronze rings guides the piston in the cylinder liner.A
piston skirtB
piston crownC
guide wayD
cross-head
考题
单选题In a single acting, two-stroke/cycle, diesel generator engine, the power impulse in an individual cylinder occurs ()A
once every crankshaft revolutionB
once every two crankshaft revolutionsC
once every piston strokeD
twice every piston stoke
考题
单选题The principal difference between loop scavenging and crossflow scavenging, as used in single acting diesel engines, is the ()A
direction of air flow within the cylinderB
sequence of port openingC
method of opening exhaust portsD
volume of air admitted to the cylinder
考题
单选题A-frames and cylinder block is held together by () to form a rigid structure.A
connecting rodsB
piston rodsC
tie rodsD
jack-bolts
考题
单选题In its simplest form the pressure reducing valve is opened or closed by () which is balanced by the downstream pressure acting on a diaphragm.A
adjusting a nutB
a pre-tensioned springC
any springD
upstream pressure
考题
单选题The complete assembly of bedplate, A-frames and cylinder block is held together by () to form a rigid structure.A
tap-boltsB
jack-boltsC
tie rodsD
fitted rods
热门标签
最新试卷