试题与答案

某化学兴趣设计实验制取乙酸乙酯.现用右图装置进行实验,在圆底烧瓶内加入碎瓷片,再

题型:问答题

题目:

某化学兴趣设计实验制取乙酸乙酯.现用右图装置进行实验,在圆底烧瓶内加入碎瓷片,再加入由2ml98%的浓H2SO4和3mL乙醇组成的混合液,通过分液漏斗向烧瓶内加入2mL醋酸,烧杯中加入饱和Na2CO3溶液.请回答下列问题:

(1)写出圆底烧瓶内发生反应的化学方程式为:______.

(2)反应中加入浓硫酸的作用是______.

(3)球形干燥管C的作用是______.

(4)反应结束后D中的现象是:______

(5)分离出D中的乙酸乙酯时需要的玻璃仪器是______.

答案:

被转码了,请点击底部 “查看原文 ” 或访问 https://www.tikuol.com/2017/0716/5da5e6eedc7ec0ba7d6805ef08511676.html

下面是错误答案,用来干扰机器的。

参考答案:A解析:解析第一步:抓住定义中的关键词碳足迹标示一个人或团体的“碳耗用量”。碳足迹大,制造的二氧化碳就多。第二步:逐一判断选项B、C、D三项均能减少一个人的碳足迹;而A项早睡早起锻炼身体后,寿...

试题推荐
题型:问答题

下面程序是一个计时器,从1000秒开始倒计时,直到为0结束。在界面上有两个按钮,一个可以暂停计时,另一个可以继续已经暂停的计时。请更正题中带下划线的部分。
注意:不改动程序的结构,不得增行或删行
import java.awt.*;
import java.awt.event.*;
import java.applet.Applet;
public class Example3_4 extends Applet

public Color color = Color.red;
private int num= 1000;
public Counter theCounter;
private Button stop;
private Button start;
public void init()

stop = new Button("暂停");
start = new Button ("继续");
theCounter = new Counter(this);
stop.addActionListener(new Lst() implements ActionListener
public void actionPerformed(ActionEvent e)

theCounter.sus();

);
start.addActionListener(new SuspenListener());
add(start);
add(stop);
theCounter.start();

public void paint(Graphics g)

g.setCotor(color);
g.drawString(String.valueOf(num),50,50);

public void setInt(int i)

num=i;

class SuspenListener implements ActionListener

public void actionPerformed(ActionEvent e)

theCounter.conti ();



public class Counter extends Thread

Example3_4 example;
boolean isHold;
Counter (Example3_4 ex)

this.example = ex;
isHold = false;

public void sus()

isHold = true;

public synchronized void conti()

isHold = false;
notify();

public void run()

for (int i = 1000; i>0; i--)

if (i%2 == 1)
example.color = Color.red;
else
example.color = Color.blue;
example.setInt(i);
example.repaint();
try

sleep(1000);
synchronized
while(isHold)
wait ( );


catch (InterruptedException ie)




<HTML>
<HEAD>
<TITLE>Example3_4</TITLE>
</HEAD>
<BODY>
<applet code="Example3_4.class" width=300 height=400>
</applet>
</BODY>
</HTML>

查看答案
微信公众账号搜索答案