试题与答案

Santa Fe, the capital of New Mexico, U.S

题型:阅读理解

题目:

Santa Fe, the capital of New Mexico, U.S.A.,is in the central part of the state, on the Santa Fe River, which flows into the Rio Grande 35 kilometres west of the city. More than two thousand metres above sea level, it lies in the Sangre de Cristo Mountains with the Ortiz Mountains to the southeast.

Santa Fe was founded in 1609 by the Spanish (西班牙人)on an old Indian village.In 1680 the Indians seized the place but only held it for twelve years before the Spanish retook it. The city remained under Spanish rule until Mexico won its independence (独立) in 1821. From then on it was a Mexican city until 1846 when it was taken over by American troops.

With a population of 48,953, Santa Fe is now the second largest city in the state. Because of its sunny weather, rich history and surrounding mountains, it is a good place for holiday makers. Besides hunting and skating in the mountains people enjoy shopping in the Indian and Spanish shops, which brings a large income to the city every year. In summer there is an international opera (歌剧) season when operas are shown in a partly-roofed ,open-air theatre daily for people from all over the world.

小题1:At present Santa Fe belongs to           .

A.India

B.Mexico

C.Spain(西班牙)

D.the United States小题2:Which of the drawings below gives an idea of what Santa Fe is like?

RG="the" Rio Grande  SFR="the" Santa Fe River  OM="the" Ortiz Mountains

小题3:Santa Fe was under the rule of the Mexicans in        .

A.1675

B.1695

C.1816

D.1833小题4:The people who held Santa Fe for the longest period in history were the           .

A.Spanish

B.Indians

C.Mexicans

D.Americans小题5:What is of special interest to people who visit Santa Fe in summer?

A.Hunting.

B.Fishing.

C.Watching operas.

D.Doing shopping.小题6:Santa Fe is best described (描述) as a             .

A.trade centre

B.holiday centre

C.home for all nations

D.seaport city小题7:One of the reasons for visitors to come to Santa Fe is that it            .

A.has fine weather

B.is the state capital

C.has historical monuments

D.is on the Santa Fe River

答案:

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

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

答案:D

试题推荐
题型:填空题

[函数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;

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