The ancient Olympic Games were part of a religious festival in honour of the Greek god Zeus, the father of all Greek gods and goddesses.The festival and games were held in Olympia, a religious sanctuary.The athletes came to Olympia from all parts of the G

题目

The ancient Olympic Games were part of a religious festival in honour of the Greek god Zeus, the father of all Greek gods and goddesses.The festival and games were held in Olympia, a religious sanctuary.The athletes came to Olympia from all parts of the Greek world, from as far as Spain in the west and Turkey in the east.The ancient Olympic Games began in the yea 776 BC when Koroibos, a cook from the city of Elis, won a 200-metre-long race.They took place for a period of 617 years until the last games were held in AD 393

In the ancient games, athletes received prizes worth large amounts of money.In fact the word athlete is an ancient Greek word, meaning one who competes for a prize.Although women did not compete in the games, there was a separate festival held at the same time in honour of Hera, wife of Zeus At this festival unmarried girls competed in foot races.

The marathon was not an event of the ancient Olympic Games.The marathon is a modern event that was first introduced in the Olympic Games in 1896.It was named after a village called Marathon where the Persians were defeated by a small Greek army The news of the victory was brought to Athens by soldier, who ran the 26 miles from the village of Marathon to the capital 26 miles was therefore adopted as the distance of the modern marathon race

The Olympic flag was introduced in 1908 and carries the symbol of five linked rings.Which represent the five continents-Africa, America, Asia, Australasia and Europe.The Olympic flame was first carried in the 1932 Olympic Games in Los Angeles.There was no torch relay in the ancient Olympic Games.The first torch relay in the modern OlympIc Games was staged in Berlin in 1936.(判断正误)

26.The ancient Greeks held the first Olympic Games in 617 BC.()

27.The ancient Greeks held the Olympic Games for 393 years.()

28.They did not allow women to compete in the an cient Olympic Games.()

29.They first used the Olympic flag in 1908.()

30.The torch relay was first used in the ancient Olympics.()


相似考题
参考答案和解析
参考答案:FFTTF
更多“The ancient Olympic Games were part of a religious festival in honour of the Greek go ”相关问题
  • 第1题:

    下列语句组中,正确的是

    A.char*s;s="Olympic";

    B.char s[7];s="Olympic";

    C.char*s;s={"Olympic"};

    D.char s[7];s={"Olympic"};


    正确答案:A
    解析:若s被定义为指针,选项A表示将指针s指向一个字符串,选项C表示为指针s赋一个字符串的值,显然选项A正确,选项C错误;若s被定义为数组,且要为该数组直接赋值,则必须在定义时进行,因此选项B和选项D都错误。

  • 第2题:

    下列语句组中,正确的是( )。

    A.char*s;s=”Olympic”;

    B.char s[7];s=”Olympic”;

    C.char*s;s={¨Olympic”};

    D.char s[7];s={"Olympic”};


    正确答案:A
    字符型指针变量可以用选项A的赋值方法:char$s;s=”Olympic”,选项C的写法:char$s。s={¨Olympic”};是错误的。字符数组可以在定义的时候初始化:chars[]={¨Olympic”};?或者chars[]=”Olympic”,都是正确的。但是不可以在定义字符数组后,对数组名赋值。(数组名是常量,代表数组首地址)所以选项8和选项D都是错误的。对于本例,选项B、D中字符数组s的大小至少为8,才能存放下字符串。(字符串的末尾都有结束标识‘、0’)。

  • 第3题:

    如果想在“必应”搜索引擎里查找Olympic方面的课件,需要在搜索栏中输入以下哪个选项的内容?

    A.filetype:ppt “Olympic”

    B.filetype:ppt“Olympic”

    C.pptfile: “Olympic”

    D.fileppt: type “Olympic”


    A

  • 第4题:

    下列语句组中,正确的是( )。

    A.char*s;s="Olympic";

    B.char sE73;s="Olympic";

    C.char*S;s={¨Olympic"};

    D.char sET3;s={"Olympic"};


    正确答案:A
    给字符串数组赋值时,要先定义数组长度,然后再赋值。可以只给部分元素赋初值,当中值的个数少于元素个数时,只给前面部分元素赋值。数组的下标是从0开始的,所以s[7]代表从s[0]到s[6]七个元素。其格式可以写成:char数组名[常量]={字符,字符,…);,也可写为char数组名[常量]={"字符串"};,或去掉{)写为:char数组名[常量]="字符串"。所以本题应选择A选项。

  • 第5题:

    下列语句组中,不正确的是( )。

    A)char*s;s-"Olympic";

    B)char s口="Olympic";

    C)char*s;s={"Olympic"};

    D)char s口={"Olympic"};


    正确答案:C

  • 第6题:

    54、下列语句组中,正确的是()。

    A.char *s;s="Olympic";

    B.char s[7];s="Olympic";

    C.char *s;s={"Olympic"};

    D.char s[7];s={"Olympic"};


    D 解析:C语言不允许通过赋值语句给字符数组赋值,故选项A),C)不正确,而“{}”是在定义变量的同时对变量进行初始化时使用,在赋值时不能使用。