患者,女,28岁,右下腹腹痛、腹泻5天。查体:T37℃,P100次/分,R23次/分

题型:问答题 案例分析题

问题:

患者,女,28岁,右下腹腹痛、腹泻5天。查体:T37℃,P100次/分,R23次/分,Bpl20/90mmHg,心肺无异常,肝脾未触及,右下腹有明显压痛及反跳痛。大便呈暗红色果酱样,可查见阿米巴滋养体。

患者所患何种疾病?诊断依据是什么?

哪种疾病与本病类似?如何鉴别?

考点:病理学(医学高级)第十七章寄生虫病第十七章寄生虫病题库
题型:问答题 案例分析题

DG-6型的锅炉给水泵在运转时,轴承温度若超过()℃时,可将冷却水充入水冷管、对轴冷却。

A、105

B、75

C、100

D、50

题型:问答题 案例分析题

亚里斯多德在《论天》一书中提出自()是球形的,位于宇宙的中心。

A、月亮

B、太阳

C、大地

题型:问答题 案例分析题

在测量过程中存在多个误差,如果局部误差项数较少,并且知道误差大小而其符号不确定时,可以采用绝对值合成法求得总误差。

题型:问答题 案例分析题

目前,我国的储蓄业务共有()。

A.6种

B.8种

C.10种

D.13种

题型:问答题 案例分析题

本题的功能是用按钮来控制文字的颜色。窗口中有三个按钮“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();

更多题库