试题与答案

(4分)化学与生活密切相关。 (1)人们通过食物获取各种营养素。 ①下列食物中,

题型:填空题

题目:

(4分)化学与生活密切相关。

(1)人们通过食物获取各种营养素。

①下列食物中,能提供大量蛋白质的是      (填字母序号)。

 

A.米饭               B.西红柿                 C.牛肉

②为了防止骨质疏松,人体每日必须摄入足够量的________元素。

(2)食品安全日益受到人们关注。下列食品因有毒而不能食用的是    (填字母序号)。

A.葡萄酿制的酒                      B.花生油炒的菜

C.甲醛浸泡的海产品                  D.霉变的大米、花生  

(3)随着经济的发展,能源与环境成为人们日益关注的问题。

燃煤发电时,将煤块粉碎成煤粉,其目的是                      

答案:

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

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

∫21(2x+1x)dx=(x2+lnx)|12=(22+ln2)-(12+ln1)=3+ln2故选B.

试题推荐
题型:阅读理解

On December 8, Xinhua News Agency published a list of news keywords that it believes sum up the year 2009.

The phrase “low-carbon life” had been heard in China before 2009, but in 2009, it has become popular among young Chinese who are concerned about the environment. It comes as world leaders are talking about fighting global warming in Copenhagen, Denmark. Greenhouse gases, such as carbon dioxide, are the main cause of global warming, which leads to extreme weather and other conditions.

Living a low carbon life means trying to cut carbon dioxide emissions(排放) in one’s daily life. For example, burning less coal and oil, which produce CO2. It means walking, biking or taking buses, rather than using a private car.

“A(H1N1) flu” is also on Xinhua’s list. Since April, 2009 the virus has made over 100,000 people ill on the Chinese mainland and 325 people had died of it as of December 9. But as US magazine Newsweek pointed out recently, the best evidence suggests it is no more dangerous than a bad seasonal flu.

The year 2009 saw the growing impact of the Internet on society, with the word “duomaomao”, meaning hide-and-seek, becoming a hit on the web. On February 12, Li Qiaoming died of brain injuries several days after being detained(拘留) by police in Jinning county, Yunnan Province. Police said it was an accident sustained(遭受)while he was playing hide-and-seek with his fellow prisoners. Netizens cast doubt on this explanation and called for an investigation. It turned out that Li had been beaten to death by other prisoners.

Another phrase connected with the Internet on the list is “Net Addiction Camps”. Many parents send children obsessed(沉迷) with the web to “Net Addiction Camps” for treatment. But some camps use physical punishment or electrical shocks. In 2009, some young people died as a result of the extreme methods, which led to a nationwide discussion. In November, the Ministry of Health banned the use of physical punishment to keep children off the net and dropped the term “net addiction(网瘾)”. It did not say that excessive(过度的) net use is a mental illness either.

66. The purpose of the passage is to ___________.

A. call on the public to live a low-carbon life

B. show the great effect of the Internet

C. introduce some news keywords of the year 2009

D. warn people not to be addicted to the Internet

67. The underlined word “Netizens” in the fifth paragraph refer to_________.

A. Li’s fellow prisoners

B. Li’s friends and relatives

C. the local people

D. people actively involved in online communities

68. What can be inferred from the incident of “duomaomao”?

A. Hide-and-seek is a dangerous game.

B. Li was beaten to death by other prisoners.

C. Police did a great job in the investigation (调查).

D. It was the influence of the Internet that led to the truth.

69. Which of the following is TRUE according to the passage?

A. The phrase “low-carbon life” had been popular among young people before 2009.

B. Global warming mainly results from greenhouse gases.

C. A (H1N1) flu is more dangerous than a bad seasonal flu.

D. Li Qiaoming died of an accident while playing hide-and-seek with his fellow prisoners.

70. Which of the following doesn’t mean a low-carbon life ?

A. Using a private car.

B. Using efficient light bulbs.

C. Walking, biking or taking buses.

D. Turning your air-conditioner one degree higher.

查看答案
题型:填空题


阅读以下函数说明和Java代码,
[说明]
现要编写一个画矩形的程序,目前有两个画图程序:DP1和DP2,DP1用函数draw_a_line(x1,y1,x2,y2)画一条直线,DP2则用drawline(x1,x2,y1,y2)画一条直线。当实例化矩形时,确定使用DPI还是DP2。
为了适应变化,包括“不同类型的形状”和“不同类型的画图程序”,将抽象部分与实现部分分离,使它们可以独立地变化。这里,“抽象部分”对应“形状”,“实现部分”对应“画图”,与一般的接口(抽象方法)与具体实现不同。这种应用称为Bridge(桥接)模式。图7-1显示了各个类间的关系。
[图7-1]

这样,系统始终只处理3个对象:Shape对象、Drawing对象、DP1或DP2对象。以下是JAvA语言实现,能够正确编译通过。
[Java代码]
//DP1.Java文件
public class DPI{
static public void draw_a_line(double x1,double y1,
double x2,double y2){
//省略具体实现
}
}
//DP2.java文件
public class DP2{
static public void drawline(double x1,double y1,
double x2,double y2){
//省略具体实现
}
}
//Drawing.java文件
(1) public class Drawing{
abstract public void drawLine(double x1,double y1,double x2,double y2);
}
//V1Drawing.java文件
public class V1Drawing extends Drawing{
public void drawLine(double x1,double y1,double x2,double y2){
DP1.draw_a_line(x1,y1,x2,y2);
}
}
//V2Drawing.java文件
public class V2Drawing extends Drawing{
public void drawLine(double x1,double y1,
double x2,double y2){//画一条直线
(2)
}
}
//Shape.java文件
abstract public class Shape{
abstract public void draw();
private (3) dp;
Shape(Drawing dp){
_dp=dp;
}
protected void drawLine(double x1,double y1,
double x2,double y2){
(4)
}
}
//Rectangle.java文件
public class Rectangle extends Shape{
private double_x1,_x2,_y1,_y2;
public Rectangle(Drawing dp,
double x1,double y1,
double x2,double y2){
(5)
_x1=x1;_x2=x2;
_y1=y1;_y2=y2;
}
public void draw(){
//省略具体实现
}
}

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