[A] New plants and animals then move into the area and begin to grow.[B] Just 2 percent of the sunlight goes through the many layers of leaves and branches above, so understory plant species have developed special traits to cope with low light levels.[C]

题目

[A] New plants and animals then move into the area and begin to grow.

[B] Just 2 percent of the sunlight goes through the many layers of leaves and branches above, so understory plant species have developed special traits to cope with low light levels.

[C] On a smaller scale, large mammals, such as elephants, regularly destroy rain forest vegetation in the Congo River Basin in Africa.

[D] An understory of shorter trees and a lacework of woody vines, or lianas, produce a forest of such complex internal architecture that many animals, including some sizable ones, rarely or never descend to the ground.

[E] Less than one percent of the trees in the forest reside in the canopy and emergent layers.

[F] Because more light penetrates the canopy, however, the vegetation of the understory and forest floor is better developed than in the tropics.

[G] The rich, green canopy is teeming with life, and forest researchers have developed ingenious methods for accessing this mysterious ecosystem.


相似考题
更多“[A] New plants and animals then move into the area and begin to grow. [B] Just 2 ”相关问题
  • 第1题:

    本题的功能是求两个交叉图形的并、减、交和异或。窗口中有4个单选按钮和一个图形面板,面板中有两个交叉的图形,选中其中一个单选按钮,图形面板中以黑色填充的方式显示运算结果。

    import java.awt.*;

    import java.awt.event*+;

    import java.awt.geom.*;

    import java.util.*;

    import javax.swing.*;

    public class java3

    {

    public static void main(String[]args)

    {

    JFrame. frame=new AreaTestFrame();

    frame.setDefaultCloseOperation(JFrame.EXIT_

    ON_CLOSE);

    frame.show();

    }

    }

    class AreaTestFrame. extends JFrame

    {

    public AreaTestFrame()

    {

    setTitle("java3");

    setSize(WIDTH,HEIGHT);

    areal

    =new Area(new Ellipse2D.Double(100,100,

    150,100));

    area2

    =new Area(new Rectangle2D.Double(150,150,

    150,100));

    Container confentPane=getContentpane();

    panel=new

    JPanel()

    {

    public void paintComponent(Graphics g)

    {

    super.paintComponent(g);

    Graphics2D g2=(Graphics2D)g;

    g2.draw(areal);

    g2.draw(area2);

    if(area!=null)g2.fill(area);

    }

    };

    contentPane. add(panel,BorderLayout. CEN-

    TER);

    JPanel buttonPanel=new JPanel();

    ButtonGroup group=new ButtonGroup();

    JRadioButton addButton=new JRadioButton("

    并",false);

    buttonPanel.add(addButton);

    group.add(addButton);

    addButton.addActionListener(new

    ActionListener()

    {

    public void actionPerformed(ActionEvent event)

    {

    area=new Area();

    area.add(areal);

    area.add(area2);

    panel.repaint();

    }

    });

    JRadioButton subtractButton

    =new JRadioButton("减",false);

    buttonPanel.add(subtractButton);

    group.add(subtractButton);

    subtractButton.addActionListener(new

    ActionListener()

    {

    public void actionPerformed(ActionEvent event)

    {

    area=new Area();

    area.add(areal);

    area.subTract(area2);

    panel.repaint();

    }

    });

    JRadioButton intersectButton

    =new JRadioButton("交",false);

    buttonPanel.add(intersectButton);

    group.add(intersectButton);

    intersectButton.addActionListener(new

    ActionListener()

    {

    public void actionPerformed(ActionEvent event)

    {

    area=new Area():

    area.add(areal);

    area.intersect(area2);

    panel.repaint();

    }

    });

    JRadioButton exclusiveCIrButton

    =new JRadioButton(“异或”,false);

    buttonPanel.add(exelusiveOrButton);

    group.add(exclusiveOrButton);

    exclusiveOrButton.addActionListener(new

    ActionListener()

    {

    public void actionPerformed(ActionEvent event)

    {

    area=new Area();

    area.add(areal);

    area.exclusiveor(area2);

    panel.repaint();

    }

    });

    contentPane.add(buttonPanel,BorderLayout.

    NORTH);

    }

    private JPanel panel;

    private Area area;

    private Area areal;

    private Area area2;

    private static final int WIDTH=400;

    private static final int HEIGHT=400;

    }


    正确答案:
    第1处:ContainercontentPane=getContentPane()第2处:area.subtract(area2)第3处:area.exclusiveor(area2)【解析】第1处用getContentPane()获得内容面板;第2处表示从area形状中减去area2形状;第3处将area设置为area形状和area2形状的组合,并减去相交部分。

  • 第2题:

    A co-worker is developing an implementation plan for a design that uses OSPF 2 and RIPv2 routing domains, with two routers redistributing between the two domains.The co- worker asks your help in choosing how to prevent domain loops by setting administrative distance.Assuming all other related settings use defaults, which of the following would solve the domain loop problem?()

    A. The distance ospf intra - area 80 inter - area 80 OSPF subcommand

    B. T he distance ospf external 80 OSPF subcommand

    C. The distance ospf intra - area 180 inter - area 180 OSPF subcommand

    D. The distance ospf external 180 OSPF subcommand


    参考答案:D

  • 第3题:

    阅读“变量的作用域”的讨论题中程序,其中定义了全局变量 float area1,area2,area3; 下面叙述正确的是()。

    A.area1,area2,area3定义为全局变量,可以将cal函数计算出来的面积值传递给max_3函数

    B.float area1,area2,area3; 语句后的所有函数都可以使用这3个变量

    C.将 float area1,area2,area3; 放在main函数中效果一样

    D.该语句有语法错误


    错误

  • 第4题:

    YouhavetwoExchangeServer2010MailboxserversnamedServer1andServer2.YouneedtomoveausersmailboxfromServer1toServer2.Yoursolutionmustminimizedowntimefortheuser.Whichcmdletshouldyourun?()

    A.Move-Mailbox

    B.Export-Mailbox

    C.Set-MoveRequest

    D.New-MoveRequest


    参考答案:D

  • 第5题:

    配置OSPF路由,必须需要具有的网络区域是:

    A.Area0

    B.Area1

    C.Area2

    D.Area3


    Area0

  • 第6题:

    14、阅读“变量的作用域”的讨论题中程序,其中定义了全局变量 float area1,area2,area3; 下面叙述正确的是()。

    A.area1,area2,area3定义为全局变量,可以将cal函数计算出来的面积值传递给max_3函数

    B.float area1,area2,area3; 语句后的所有函数都可以使用这3个变量

    C.将 float area1,area2,area3; 放在main函数中效果一样

    D.该语句有语法错误


    C