Redwood trees are the tallest plants on

题型:阅读理解

问题:

Redwood trees are the tallest plants on the earth,reaching heights of up to 100 meters.They are also known for their longevity,typically 500 to 1000 years,but sometimes more than 2000 years.A hundred million years ago,in the age of dinosaurs,redwoods were common in the forests of a much more moist and tropical North America.As the climate became drier and colder,they declined to a narrow strip along the Pacific coast of Northern Califomia.

The trunk of redwood trees is very strong and usually forms a single straight column.It is covered with a soft bark.This bark can be pretty thick,well over two feet in the more mature trees.It gives the older trees a certain kind of protection from insects,but the main benefit is that it keeps the center of the tree harmless from moderate forest fires because of its thickness.This fire resistant quality explains why the giant redwood grows to live that long.While most other types of trees are destroyed by forest fires,the giant redwood actually prospers because of them.

Moderate fires will clear the ground of competing plant life,and the rising heat dries and opens the ripe fruit of the redwood,releasing many thousands of seeds onto the ground below.

New trees are often produced from shoots,little baby trees,which form at the base of the trunk.These shoots grow slowly,fed by the root system of the “mother’’ tree.When the main tree dies,the shoots are then free to grow as full trees,forming a “fairy ring” of trees around the original tree.These trees,in turn,may give rise to more shoots,and the cycle continues.

小题1:Why were redwood trees easier to find in the forests of North America millions of years ago?

A.The trees were taller and stronger.

B.The soil was softer for seeds to develop.

C.The climate there was warmer and wetter.

D.The temperature was lower along the Pacific coast.小题2:Which of the following is a function of the tree bark as mentioned in the passage?

A.It allows redwood trees to bear seeds.

B.It prevents redwood trees from attack by insects.

C.It helps redwood trees absorb water in the air.

D.It makes redwood trees more beautiful and appealing.小题3:Why do redwood trees grow to live that long according to the passage?

A.They have heavy and straight tree trunks.

B.They are properly watered and catered to.

C.They are more resistant to fire damage than other trees.

D.They produce many young trees to maintain their life cycle.小题4:How does a “fairy ring’’ form according to the passage?

A.By killing an old tree.

B.By connecting root systems.

C.By inserting holes into old trees.

D.By surrounding a mature tree.

考点:科教类阅读
题型:阅读理解

某城市位于第Ⅳ气候区,拟建开发建设一个以中高层为主的居住小区,选择人均用地在多少符合国家规范。

A.14~20m2/人

B.17~24m22/人

C.15~22m22/人

D.15~20m22/人

题型:阅读理解

[函数2.1说明]
函数void sort(int arry[],int n)的功能是对数组a中的arry[0]~arry[n-1]这n个元素进行排序。排序过程如下:第一趟对所有的偶数下标x,比较arr[x]和arry [x+1],若arry[x]>arry[x+1],则将两者交换; 第二趟对所有的奇数下标y,比较arry[y]和arry[y+1],若arry[y]>arry[y+1],则将两者交换; 第三趟对偶数下标,第四趟对奇数下标,……,依次类推,直至整个数组元素有序排列为止。
[函数2.1]
void sort (int arry[],int n)
int i,j,tag=1;
for(j=0; j<n; j++)
for(i= (1) ;i<n-1; (2) )
if (arry [i] >arry [i+1])
t=arry [i] ;
arry [il =arry [i+1] ;
arry [i+1] =t ;
tag=0 ;


tag++;
if( (3) )break;


[函数2.2说明]
这是一棵二叉树排序查找元素的程序,查找的方法是:首先与树的根结点的元素进行比较,若相等则找到,返回此结点的地址; 若要查找的元素小于根结点的元素值,则指针指向此结点的左子树,继续查找; 若要查找的元素大于根结点的元素值,则指针指向此结点的右子树,继续查找。直到指针为空,表示此树中不存在所要查找的元素。本题使用递归方法实现。
[函数2.2]
typedef struct node
int data;
struct node *left;
struct node *right;
NODE;
NODE *SearchSortTree(NODE *tree,int e)
if (tree ! =NULL)
if (tree->data<e)
(4) ;
else if(tree->data>e)
(5) ;
else return tree;

return tree;

题型:阅读理解

运行中钢球磨煤机的主轴承油温不应超过()℃。

A、50

B、60

C、70

D、80

题型:阅读理解

符合证明的定义。

题型:阅读理解

1776年在德国柯尼斯堡大学开始教授教育学的学者是(  )。

A.赫尔巴特

B.夸美纽斯

C.康德

D.裴斯泰洛齐

更多题库