单选题_____A The tree was broken.B All the leaves fell down.C One of the branches fell down.D The tree was cut down.

题目
单选题
_____
A

The tree was broken.

B

All the leaves fell down.

C

One of the branches fell down.

D

The tree was cut down.


相似考题
更多“单选题_____A The tree was broken.B All the leaves fell down.C One of the branches fell down.D The tree was cut down.”相关问题
  • 第1题:

    Which of the following usually causes a tree to grow unhealthy?

    A. Giving a tree a special shape and a definite height.

    B. Removing small side branches and making a tree look less thick.

    C. Allowing too many branches to grow in the middle.

    D. Having a tree surrounded by many other trees.


    正确答案:C

    42.答案为C  根据第二段A tree may grow healthier by removing the branches that are locking up the centre可知树中间的枝杈不利于树木生长,C与文章内容相反,因此错误。

  • 第2题:

    The cottonwood tree Mr. Flanagan found was an extremely tall tree with broad leaves.


    正确答案:

  • 第3题:

    Trees should only be pruned when there is a good and clear reason for doing so and,
    fortunately, the number of such reasons is small. Pruning involves the cutting away of overgrown and unwanted branches, and the inexperienced gardener can be encouraged by the thought that more damage results from doing it unnecessarily than from leaving the tree to grow in its own way.
    First, pruning may be done to make sure that trees have a desired shape or size. The object may be to get a tree of the right height, and at the same time to help the growth of small side branches which will thicken its appearance or give it a special shape. Secondly, pruning may be done to make the tree healthier. You may cut diseased or dead wood, or branches that are rubbing against each other and thus cause wounds. The health of a tree may be encouraged by removing branches that are blocking up the centre and so preventing the free movement of air.
    One result of pruning is that an open wound is left on the tree and this provides an easy entry for disease, but it is a wound that will heal. Often there is a race between the healing and the disease as to whether the tree will live or die, so that there is a period when the tree is at risk. It should be the aim of every gardener to reduce which has been pruned smooth and clean, for healing will be slowed down by roughness. You should allow the cut surface to dry for a few hurts and then paint it with one of the substances available from garden shops produced especially for
    this purpose. Pruning is usually without interference from the leaves and also it is very unlikely that the cuts you make will bleed. If this does happen, it is, of course, impossible to paint them properly.
    Pruning should be done to__________.

    A.make the tree grow taller
    B.improve the shape of the tree
    C.get rid of the small branches
    D.make the small branches thicker

    答案:B
    解析:
    由第二段第一句“pruning may be done to make sure that trees have a desired shape or size”可知答案选B,即修剪有时是为了树木有个好外形。

  • 第4题:

    Trees should only be pruned when there is a good and clear reason for doing so and,
    fortunately, the number of such reasons is small. Pruning involves the cutting away of overgrown and unwanted branches, and the inexperienced gardener can be encouraged by the thought that more damage results from doing it unnecessarily than from leaving the tree to grow in its own way.
    First, pruning may be done to make sure that trees have a desired shape or size. The object may be to get a tree of the right height, and at the same time to help the growth of small side branches which will thicken its appearance or give it a special shape. Secondly, pruning may be done to make the tree healthier. You may cut diseased or dead wood, or branches that are rubbing against each other and thus cause wounds. The health of a tree may be encouraged by removing branches that are blocking up the centre and so preventing the free movement of air.
    One result of pruning is that an open wound is left on the tree and this provides an easy entry for disease, but it is a wound that will heal. Often there is a race between the healing and the disease as to whether the tree will live or die, so that there is a period when the tree is at risk. It should be the aim of every gardener to reduce which has been pruned smooth and clean, for healing will be slowed down by roughness. You should allow the cut surface to dry for a few hurts and then paint it with one of the substances available from garden shops produced especially for
    this purpose. Pruning is usually without interference from the leaves and also it is very unlikely that the cuts you make will bleed. If this does happen, it is, of course, impossible to paint them properly.
    Trees become unhealthy if the gardener__________.

    A.allows too many branches to grow in the middle
    B.does not protect them from wind
    C.forces them to grow too quickly
    D.damages some of the small side branches

    答案:A
    解析:
    由第二段最后一句“the health of a tree may be encouraged by removing branches that are blocking up the centre”可知,剪去阻塞树木中央空间的枝条可使树木健康生长,那么相反,保留这些枝条则会导致树木长得不健康,因此答案为A。

  • 第5题:

    Ed said that his boy fell off a tree.()

    AOh dear! I hope he wasn‘t hurt

    BOh, no. A lucky boy.

    CHe might have broken his arm.

    DNothing serious.


    A

  • 第6题:

    Which two of these statements correctly describe classic PIM-SM?()

    • A、The IOS default is for a last-hop router to trigger a switch to the shortest path tree as soon as a new source is detected on the shared tree.
    • B、The IOS default is for every one of the routers on the shared tree to trigger a switch to the shortest path tree as soon as a new source is detected on the shared tree.
    • C、The default behavior of switching to the shortest path tree as soon as a new source is detected on the shared tree can be disabled by setting the value in the ip pim spt-threshold command to "infinity."
    • D、The default behavior of switching to the shortest path tree as soon as a new source is detected on the shared tree can be disabled by setting the value in the ip pim spt-threshold command to "zero."

    正确答案:A,C

  • 第7题:

    Spanning Tree Protocol IEEE 802.1 s defines the ability to deploy which of these?()

    • A、one global STP instance for all VLANs
    • B、one STP instance for each VLAN
    • C、one STP instance per set of VLANs
    • D、one STP instance per set of bridges

    正确答案:C

  • 第8题:

    You are designing the forest and domain structure to meet the business and technical requirements.   Which structure should you use?()

    • A、 A single forest with one tree, and one domain
    • B、 A single forest with one tree two domain
    • C、 A single forest with two trees, each with a single domain
    • D、 Two forests, each with a single tree and a single domain
    • E、 Two forests, each with two trees, with a single domain in each tree.

    正确答案:A

  • 第9题:

    单选题
    final class Tree {  private static String tree = "tree ";  String getTree() { return tree; }  }  class Elm extends Tree {  private static String tree = "elm "; public static void main(String [] args) {  new Elm().go(new Tree());  }  void go(Tree t) {  String s = t.getTree()+Elm.tree+tree+(new Elm().getTree());  System.out.println(s);  } }  结果为:()
    A

    elm elm elm elm

    B

    tree elm elm elm

    C

    tree elm tree elm

    D

    编译失败


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

  • 第10题:

    单选题
    Ed said that his boy fell off a tree.()
    A

    Oh dear! I hope he wasn‘t hurt

    B

    Oh, no. A lucky boy.

    C

    He might have broken his arm.

    D

    Nothing serious.


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

  • 第11题:

    单选题
    现有:  class Tree {  private static String tree = "tree ";  String getTree ()  {  return tree;  }       }  class Elm extends Tree {  private static String tree = "elm ";  public static void main (String  []  args)  {       new Elm() .go (new Tree())  ;      } }  void go (Tree t)  {  String  s =  t.getTree () +Elm.tree  +  tree  +   (new  Elm() .getTree ()) ;      System.out.println (s) ;}     结果为:()
    A

     elm elm elm elm

    B

     tree elm elm elm

    C

     tree elm elm tree

    D

     tree elm tree elm


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

  • 第12题:

    单选题
    Pruning should be done to _____.
    A

    make the tree grow taller

    B

    improve the shape of the tree

    C

    get rid of the small branches

    D

    make the small branches thicker


    正确答案: B
    解析:
    根据第二段第一句“pruning may be done to make sure that trees have a desired shape or size”可知,修剪是为了使树木有个好外形。

  • 第13题:

    The writer suggests that pruning should be done in winter because______.

    A. the cut surface can heal more quickly

    B. open wounds on the tree run the less risk of getting diseased

    C. a gardener can do pruning more easily

    D. the leaves can interfere


    正确答案:C

    44.答案为C  根据短文最后一句得知冬季树叶少能方便修剪树木,ABD皆为干扰项,与原句不符;


  • 第14题:

    Trees should only be pruned when there is a good and clear reason for doing so and,
    fortunately, the number of such reasons is small. Pruning involves the cutting away of overgrown and unwanted branches, and the inexperienced gardener can be encouraged by the thought that more damage results from doing it unnecessarily than from leaving the tree to grow in its own way.
    First, pruning may be done to make sure that trees have a desired shape or size. The object may be to get a tree of the right height, and at the same time to help the growth of small side branches which will thicken its appearance or give it a special shape. Secondly, pruning may be done to make the tree healthier. You may cut diseased or dead wood, or branches that are rubbing against each other and thus cause wounds. The health of a tree may be encouraged by removing branches that are blocking up the centre and so preventing the free movement of air.
    One result of pruning is that an open wound is left on the tree and this provides an easy entry for disease, but it is a wound that will heal. Often there is a race between the healing and the disease as to whether the tree will live or die, so that there is a period when the tree is at risk. It should be the aim of every gardener to reduce which has been pruned smooth and clean, for healing will be slowed down by roughness. You should allow the cut surface to dry for a few hurts and then paint it with one of the substances available from garden shops produced especially for
    this purpose. Pruning is usually without interference from the leaves and also it is very unlikely that the cuts you make will bleed. If this does happen, it is, of course, impossible to paint them properly.
    Why is a special substance painted on the tree?

    A.To make a wound smooth.
    B.To prevent disease entering a wound.
    C.To cover a rough surface.
    D.To help a wound to dry.

    答案:B
    解析:
    由第三段“One result of pruning is that an open wound is left on the tree and this provides an easy entry for disease”和“You should allow the cut surface to dry for a few hums and then paint it with one of the substances available from garden shops produced especially for this Justification”可知。修剪树木留下的伤口给了疾病侵袭的机会,因此涂刷特殊物质是为了阻挡疾病通过伤口进入树木。故选B。

  • 第15题:

    Trees should only be pruned when there is a good and clear reason for doing so and,
    fortunately, the number of such reasons is small. Pruning involves the cutting away of overgrown and unwanted branches, and the inexperienced gardener can be encouraged by the thought that more damage results from doing it unnecessarily than from leaving the tree to grow in its own way.
    First, pruning may be done to make sure that trees have a desired shape or size. The object may be to get a tree of the right height, and at the same time to help the growth of small side branches which will thicken its appearance or give it a special shape. Secondly, pruning may be done to make the tree healthier. You may cut diseased or dead wood, or branches that are rubbing against each other and thus cause wounds. The health of a tree may be encouraged by removing branches that are blocking up the centre and so preventing the free movement of air.
    One result of pruning is that an open wound is left on the tree and this provides an easy entry for disease, but it is a wound that will heal. Often there is a race between the healing and the disease as to whether the tree will live or die, so that there is a period when the tree is at risk. It should be the aim of every gardener to reduce which has been pruned smooth and clean, for healing will be slowed down by roughness. You should allow the cut surface to dry for a few hurts and then paint it with one of the substances available from garden shops produced especially for
    this purpose. Pruning is usually without interference from the leaves and also it is very unlikely that the cuts you make will bleed. If this does happen, it is, of course, impossible to paint them properly.
    ?What was the author's purpose when writing this passage?

    A.To give practical instruction for pruning a tree.
    B.To give a general description of pruning.
    C.To explain how trees develop diseases.
    D.To discuss different methods of pruning.

    答案:A
    解析:
    这是一篇说明文,讲了修剪的目的以及方法,为修剪树木提供实用的指导,故选A。

  • 第16题:

    The manchineel tree has smooth,pale brown bark and long,drooping branches.

    A:spindly
    B:prickly
    C:sagging
    D:blossoming

    答案:C
    解析:
    本句意思:毒番石榴树树皮光滑、呈灰褐色,树枝下垂。drooping下垂的,低垂的。sagging下垂的,下弯的;spindly细长的,纤弱的;prickly多刺的;blossoming开花的。

  • 第17题:

    Ed said that his boy fell off a tree.()

    • A、Oh dear! I hope he wasn‘t hurt
    • B、Oh, no. A lucky boy.
    • C、He might have broken his arm.
    • D、Nothing serious.

    正确答案:A

  • 第18题:

    How would you like your hair done?()

    • A、Can you do it?
    • B、Cut down. 
    • C、Fell down. 
    • D、Cut short.

    正确答案:D

  • 第19题:

    Spanning Tree Protocol IEEE 802.1s defines the ability to deploy which of these? ()

    • A、one global STP instance for all VLANs
    • B、one STP instance for each VLAN
    • C、one STP instance per set of VLANs
    • D、one STP instance per set of bridges

    正确答案:C

  • 第20题:

    单选题
    You are designing the forest and domain structure to meet the business and technical requirements. Which structure should you use?()
    A

    A single forest with one tree, and one domain

    B

    A single forest with one tree two domain

    C

    A single forest with two trees, each with a single domain

    D

    Two forests, each with a single tree and a single domain

    E

    Two forests, each with two trees, with a single domain in each tree


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

  • 第21题:

    单选题
    You are designing the forest and domain structure to meet the business and technical requirements.   Which structure should you use?()
    A

     A single forest with one tree, and one domain

    B

     A single forest with one tree two domain

    C

     A single forest with two trees, each with a single domain

    D

     Two forests, each with a single tree and a single domain

    E

     Two forests, each with two trees, with a single domain in each tree.


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

  • 第22题:

    单选题
    Which of the following is NOT true for the use of tusks?
    A

    To dig for salt.

    B

    To remove the bark from the tree.

    C

    To move trees and branches to clear a path.

    D

    To pull trees and branches to establish territory.


    正确答案: B
    解析:
    录音中讲到象牙的用处是“Tusks are used to dig for water, salt, and roots; to debark trees, to eat the bark; to dig into baobab trees to get at the pulp inside; and to move trees and branches when clearing a path.”,由此可见象牙是用来挖掘水,盐和树根;用来剥去树皮,吃树皮;插到猴面包树里得到里面的果肉;清理道路时搬走树和树枝。另外,它们还可以用来在树上做记号建立领地(marking trees to establish territory),只有D项的错误。

  • 第23题:

    单选题
    Spanning Tree Protocol IEEE 802.1s defines the ability to deploy which of these?()
    A

     one global STP instance for all VLANs

    B

     one STP instance for each VLAN

    C

     one STP instance per set of VLANs

    D

     one STP instance per set of bridges


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