更多“Beijing is()capital of China. It's()very big city.A、a;theB、the;aC、a;a”相关问题
  • 第1题:

    John lives inLondon which is on()Thames.

    A.the

    B.a

    C.an

    D.*


    正确答案:A

  • 第2题:

    ( ) journey of( ) thousand miles must begin with single steps.

    A、The/ the

    B、The/ a

    C、A/ the

    D、A/ a


    参考答案:D

  • 第3题:

    The Changjiang River is ___ river in China.

    A.very laong

    B.longer

    C.longest

    D.the longest


    正确答案:D

  • 第4题:

    London is ( ) capital of Britain, and it is ( )_ great city, too.

    A. a, the

    B. the, /

    C. the, a


    正确答案:C

  • 第5题:

    下列选项中正确的语句组是

    A.char s[8]; s={"Beijing"};

    B.char s[8]; s="Beijing";

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

    D.char *s; s="Beijing";


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

  • 第6题:

    下列选项中正确的语句组是 ______。

    A.char s[8];s={"Beijing"};

    B.char *s;s={"Beijing"};

    C.char s[8];s="Beiiing";

    D.char *s;s="Beijing";


    正确答案:D
    解析:C语言规定可以对字符指针变量直接赋字符串常量,但不能给字符数组直接赋字符串常量,对字符数组赋字符串常量应使用的是strcpy函数。正确答案为选项D。

  • 第7题:

    __________ can fly very high in __________ sky.


    A.The birds ... the

    B.The birds ... /

    C.Birds ... the

    D.Birds ... /

    答案:C
    解析:
    考查冠词。句意为“鸟可以在天空中飞得很高”。“不定冠词+单数名词”或单个复数名词可表示一类,这里birds指的是鸟类,表示泛指,不加定冠词;sky是世界上独一无二事物,前面用定冠词the修饰。故选C。

  • 第8题:

    That book gives a very vivid () of that city.

    • A、picture
    • B、photo
    • C、view

    正确答案:A

  • 第9题:

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

    • A、char s[8]; s={“Beijing”};
    • B、char *s; s={“Beijing”};
    • C、char s[8]; s=“Beijing”;
    • D、char *s; s=“Beijing”;

    正确答案:D

  • 第10题:

    填空题
    The Capital Airport is the largest one in China.→ The Capital Airport is ____ any other airport in China.

    正确答案: larger than
    解析:
    the largest one=larger than any other…,都表示最大的一个。

  • 第11题:

    单选题
    Is there a drugstore near here?()
    A

    It‘s very small.

    B

    It‘s very crowded.

    C

    It‘s a cheap one.

    D

    Yes, there is a big one.


    正确答案: A
    解析: 暂无解析

  • 第12题:

    问答题
    Practice 5  This isn’t the sort of girl to let the rock ‘n’ roll lifestyle go to her head. Even if she did, her family would bring her down to earth. “When I started at Capital the only thing my brothers asked was whether they’d get free records,” she remembers. “And my mum couldn’t even find the station on her radio.”  Margherita Taylor is very nice and very easy-going, but very much in control. She is so much a “Capital Radio girl” that you might think she is just doing a good job for the station’s publicity department, although you know what she’s saying really comes from the heart. She smiles a lot, laughs a lot and is generally a great advert for Capital.

    正确答案:
    【参考译文】
    她不是那种让摇滚乐风格的生活方式充斥大脑的女孩。即使她这样做了,她家人也不会赞同。“我来首都电台工作后,我哥哥问的唯一事情是是否可以得到免费唱片,”她回忆说,“我妈妈甚至在收音机上找不到首都电台。”
    玛格丽特·泰勒平易近人,但有控制力强。她是个很好的“首都电台女孩”,你可能觉得她所做的就是给电台的宣传部做好工作,虽然你知道她说的都是心里话。她常常微笑或大笑,她本身就是首都电台的一则很好的广告。
    解析: 暂无解析

  • 第13题:

    Beijing is( )the north of China.

    A.on

    B.at

    C.across

    D.in


    参考答案:D

  • 第14题:

    ( ) dogs are clever animals, but they are not ( ) cleverest of all animals.

    A、The/ the

    B、The/ a

    C、…/ ...

    D、.../ the


    参考答案:D

  • 第15题:

    The room’s door are very big.()


    参考答案: 错误

  • 第16题:

    – Is there a drugstore near here?– ( ).

    A. It's very small

    B. It's very crowded

    C. It's a cheap one

    D. Yes, there is a big one


    正确答案:D

  • 第17题:

    下列选项中正确的语句是

    A.char s[8]; s={"Beijing"};

    B.char*s; s ={"Beijing"};

    C.char s[8]; s="Beijing";

    D.char *s; s ="Beijing";


    正确答案:D
    解析:本题考核的知识点是字符欺组初始化及字符型指针的应用。字符数组初始化可以有两种方式:方式一,按单个字符的方式赋初值。方式二,把一个字符串作为初值赋给字符数组。比如:charch[5]=rabc”),选项A属于这种情况,但是选项A定义的字符数组长度为8,由于最后还要加一个“\0”做结束标志,所以赋给他的字符串长度应小于等于7,所以选项A不正确;在给字符数组赋初值的时候,应该用花括号“{”和“}”将字符串括起来,故选项C不正确。将字符型指针变量指向字符串也有两种方法,一是在定义指针变量时就给其赋初值,比如:char*p="student";二是给指针变量赋值,比如:p="student";(p已经被定义为字符型指针变量;),故选项D正确,而选项C中的花括号是多余的,应该去掉,所以,4个选项中选项D符合题意。

  • 第18题:

    ( )–It’s raining heavily.Let’s stand under that big tree.

    –__________.It’s very dangerous to do so in such weather.

    A.We don’t have to

    B.Let’s go

    C.All right

    D.We’d better not


    正确答案:D

  • 第19题:

    Is there a drugstore near here?()

    • A、It‘s very small.
    • B、It‘s very crowded.
    • C、It‘s a cheap one.
    • D、Yes, there is a big one.

    正确答案:D

  • 第20题:

    ()majority of people are highly against the pollution in this city.

    • A、–(不填)
    • B、A
    • C、The
    • D、Many

    正确答案:C

  • 第21题:

    单选题
    下列选项中,正确的语句组是()。
    A

    char s[8]; s={“Beijing”};

    B

    char *s; s={“Beijing”};

    C

    char s[8]; s=“Beijing”;

    D

    char *s; s=“Beijing”;


    正确答案: C
    解析: 暂无解析

  • 第22题:

    单选题
    What does this tour company think can show Beijing is a fast developing modern city?
    A

    Beijing Capital Airport.

    B

    Bird’s Nest, Water Cube and Olympic Park.

    C

    Tian’anmen Square and the Forbidden City.

    D

    The Great Wall and the Summer Palace.


    正确答案: C
    解析:
    根据文章“Visit the Olympic sites: Bird’s Nest, Water Cube and Olympic Park, witnessing the fast developing modern China. Enjoy some free time after visiting the sites”可知这家旅游公司认为,北京的鸟巢,水立方和奥林匹克公园显示了北京是一个发展迅速的现代化城市,故选B。

  • 第23题:

    单选题
    Beijing is()capital of China. It's()very big city.
    A

    a;the

    B

    the;a

    C

    a;a


    正确答案: C
    解析: 暂无解析