已知电动机的输出轴转速n11470min/r,减速机的速比i为30,求减速机输出轴

题型:问答题 简答题

问题:

已知电动机的输出轴转速n11470min/r,减速机的速比i为30,求减速机输出轴的转速n2

考点:电厂燃料运行工考试电厂燃料运行工考试题库
题型:问答题 简答题

关于椎间盘扫描的要求中,错误的是

A.一般每个椎间盘扫描3~5层
B.包括椎间盘及其上下椎体的终板上缘或下缘
C.中间至少一个层面穿过椎间隙,且不包括椎体前后缘
D.胸椎间盘用5mm的层厚和层距
E.颈椎间盘用2~3mm的层厚和层距

题型:问答题 简答题

工会经费按职工工资总额的( )计提。

A.1.5%

B.1.2%

C.2%

D.2.5%

题型:问答题 简答题

烧伤创面适用于暴露疗法的是()

A.肢体创面

B.头颈部创面

C.会阴部创面

D.大面积创面

E.手部创面

题型:问答题 简答题

人有悲欢离合,月有阴晴圆缺”,我国文学家们用浪漫的手法把人生的遭遇与某些天文现象联系起来,在古代又有“天狗食日”等许多传说,请根据所学的知识说明日食的形成原因,并说明人在何处才可以看见日全食.

题型:问答题 简答题

本题的功能是用按钮来控制文字的颜色。窗口中有三个按钮“Yellow”、“Blue”和“Red”,它们分别对应文字标签中文本的颜色为黄色、蓝色和红色,单击任意一个按钮,文字标签中的文本就变成按钮对应的颜色。
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class ButtonPanel extends JPanel implements ActionListener
public ButtonPanel()
yellowButton=new JButton("Yellow");
blueButton=new JButton("Blue");
redButton=new JButton("Red");
j1=new JLabel("I am from China!");
add(yellowButton);
add(blueButton);
add(redButton);
add(j1);
yellowButton.addActionListener(this);
blueButton.addActionListener(this);
redButton.addActionListener(this);

public void actionPerformed(ActionEvent evt)
Object source=evt.getSource();
Color color=getForcground();
if(source==yellowButton)color=Color.yellow;
else if(source==blueButton)color=Color.blue;
else if(source==redButton)color=Color.red;
______;
______;

private JButton yellowButton;
private JButton blueButton;
private JButton redButton;
private JLabel j1;

class ButtonFrame extends JFrame
public ButtonFrame()
setTitle("exam 16");
setSize(300,200);
addWindowListener(new WindowAdapter()
public void windowClosing(WindowEvent e)
System.exit(0);

);
Container contentPane=getContentPane();
contentPane.add(new ButtonPanel());


public class java2
public static void main(String[]args)
JFrame frame=new ButtonFrame();
frame.show();

更多题库