单选题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.AcontractionBretractionCexpansionDshrinkage

单选题
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


参考解析

解析: 暂无解析

相关考题:

执行下列程序后,鼠标单击窗体,输出结果为 。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”

单瓶供应系统supply system of single cylinder

单选题In a single acting, four-stroke/cycle diesel engine, the power impulse in an individual cylinder occurs ()Aonce every crankshaft revolutionBonce every two crankshaft revolutionsConce every piston strokeDtwice every piston stroke

单选题A number of cylinder liners are enclosed in one cast iron casing to form a ().Acylinder coverBcylinder blockCcylinder frameDbed-plate

单选题以下用法中正确的是()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”

单选题For Vee-form engines, () is shaped to given two slopping surface on which () are placed at the correct relative angle to each other.Athe bottom of the column;the cylinder blocksBthe top of the column;the cylinder headsCthe top of the column;the cylinder blocksDthe 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 ()Abearing pressure in a four-stroke/cycle acting single diesel engine is continually reversedBbearing pressure in a two-stroke/cycle single acting diesel engine is continually reversedCthe maximum bearing pressure is higher in a single acting two-stroke/cycle diesel engineDtwo-stoke/cycle diesel engines require more complicated lubrication piping

名词解释题单瓶供应系统supply system of single cylinder

单选题The cylinder head, cylinder liner and () form the combustion chamber.AframeBpistonCcrankcaseDexplosion plate

单选题A single piece() fitted with bronze rings guides the piston in the cylinder liner.Apiston skirtBpiston crownCguide wayDcross-head

单选题In a single acting, two-stroke/cycle, diesel generator engine, the power impulse in an individual cylinder occurs ()Aonce every crankshaft revolutionBonce every two crankshaft revolutionsConce every piston strokeDtwice every piston stoke

单选题The principal difference between loop scavenging and crossflow scavenging, as used in single acting diesel engines, is the ()Adirection of air flow within the cylinderBsequence of port openingCmethod of opening exhaust portsDvolume of air admitted to the cylinder

单选题A-frames and cylinder block is held together by () to form a rigid structure.Aconnecting rodsBpiston rodsCtie rodsDjack-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.Aadjusting a nutBa pre-tensioned springCany springDupstream pressure

单选题The complete assembly of bedplate, A-frames and cylinder block is held together by () to form a rigid structure.Atap-boltsBjack-boltsCtie rodsDfitted rods