题目内容

阅读下面短文,从短文后所给各题的四个选项([A]、[B]、[C]和[D])中选出能填入相应空白处的最佳选项。 Hundreds of years before the birth of Christ, the Celts --the (36) of parts of France and the British Isles-- (37) a festival at the beginning of every winter for the Lord of the Dead. The Celts believed that this god (38) the world in Winter (39) he called together the ghosts of dead people. On October (31) , people believed these (40) of the dead came back to earth in the (41) of animals. They thought that very bad. ghosts came back (42) black cats. (43) their festival on this day, the Celts (44) to make big fires to frighten the ghosts and chase them (45) . This celebration was the (46) of the holiday of Halloween. The Romans, who ruled the British Isles (47) , also held a (48) at the beginning of winter. Because this was harvest time, the Romans (49) apples and nuts for the Goddess of the garden. (50) the Christians added their customs (51) those of the Celts and the Romans. They had a (52) holiday on November 1 for the saints, (53) they called All Hallows’ or All Saints Day. The evening (54) this day was All Hallows’ Even ("holy evening"); (55) the name became Halloween.

A. like
B. as
C. on
D. by

查看答案
更多问题

钩端螺旋体病的主要传播途径为

A. 呼吸道传播
B. 消化道传播
C. 血液传播
D. 直接接触传播
E. 虫媒传播

A4型题男,20岁,农民,在小河游泳后出现高热3天,伴畏寒、头痛、全身酸痛、乏力,于7月25日入院,体检,体温39.5℃,球结合膜充血,巩膜黄染,肝肋下1.5cm,质中,血象白细胞12.5×109/L,中性0.80,尿蛋白曙性,初步诊断为钩端螺旋体病。 钩端螺旋体病眼部后发症主要于哪一型钩体感染后出现()

A. 波摩那型
B. 黄疸出血型
C. 七日热型
D. 犬型
E. 秋季热型

我国稻田型钩端螺旋体病主要由哪一群引起

A. 七日热群
B. 秋季热群
C. 澳洲热群
D. 黄疸出血群
E. 波摩那群

下列给定程序中,函数fun()的功能是:在字符串str中找出ASCII码值最小的字符,将其放在第一个位置上,并将该字符前的原字符向后顺序移动。例如,调用fun()函数之前给字符串输入fagAgBDh,调用后宁符串中的内容为AfaggBDh。 请改正程序中的错误,使它能得到正确结果。 注意:不要改动main函数,不得增行或删行,也不得更改程序的结构。 试题程序: #include<stdio.h> /*************found************/ void fun(char p) char min,*q; int i=0; min=p[i]; while (p[i]!=0) if (min>p[i]) /*************found*************/ p=q+i; min=p[i]; i++; while(q>p) *q=*(q-1); q--; p[0]=min; main() char str[80]; printf("Enter a string:"); gets(str); printf("\nThe original string:"); puts(str); fun(str); printf("\nThe string after moving:"); puts(str); printf("\n\n");

答案查题题库