问题 多项选择题

简单应用题请完成下列Java程序:制作一个图形用户界面,上方包含一个TextField和Button构件,实现输入字符串,点击Button获取文本区的字符;中间显示Label的内容;下方是4个按钮,分别实现控制Label在最左边,在中间,在右边和退出程序的功能。注意:请勿改动main( )主方法和其他已有语句内容,仅在下划线处填入适当的语句。程序运行结果如下:

import java.awt.*;import java.awt.event.*;public class ex15_2 extends Frame implements ActionListener { private Label l; private TextField tf; public static void main(String[] arg) { ex15_2 obj15_2 = new ex15_2(); } public ex15_2() {setBackground(Color.gray); l = new Label("Welcom to the NCR Examination!"); Font font = new Font("TimesRoman",Font.BOLD,20); l.setFont(font); add("Center",l); Panel p = new Panel(); Button b = new Button("Left"); b.addActionListener(this); p.add(b); b = new Button("Center"); b.addActionListener(this); p.add(b); b = new Button("Right"); b.addActionListener(this); p.add(b); b = new Button("Exit"); b.addActionListener(this); p.add(b); ; p = new Panel(); tf = new TextField(40); p.add(tf); b = new Button("Set"); b.addActionListener(this); p.add(b); add("North",p); setSize(500,300); show(); } public void actionPerformed(ActionEvent ae) { if(ae.getActionCommand().equals("Exit")) System.exit(0); else if(ae.getActionCommand().equals("Left")) ;else if(ae.getActionCommand().equals("Center")) l.setAlignment(Label.CENTER); else if(ae.getActionCommand().equals("Right")) l.setAlignment(Label.RIGHT); else if(ae.getActionCommand().equals("Set")) l.setText(tf.getText()); }}

答案

参考答案:add("South",p)l.setAlignment(Label.LEFT)

解析:本题主要考查AWT基本构件Button, Pane, Label和TextField结合的简单应用。解题关键是熟悉这几种基本构件一般用法,会设置Label在窗口中的位置。本题中,第1个空,将面板构件放在窗口的最下方;第2个空,根据Button事件调用l对象的setAlignment()方法,设置Label在面板中的位置。

单项选择题 A3型题
填空题

For centuries people have been fighting over whether governments should allow trade between countries. There have been, and probably always will be, (1) to the argument. Some people argue that just (2) is best for both the country and the world. Others argue that trade with other countries (3) for some people to make a good living. Both sides are at least (4) .
International trade matters a lot. Its effects on (5) are enormous. Imagine a world in which your country (6) at all with other countries. Imagine what kind of job you would be (7) and what goods you could buy or not buy in such a world.
For the United States, for example, start by imagining that it lived without its (8) a year in imported oil, and cut back on its (9) because the remaining domestic oil and other energy sources were (10) . Producers and consumers in other parts of the economy would (11) if they were suddenly stripped of foreign-made goods like CD players and clothing. On the (12) side, suppose that Boeing could sell airplanes, and farmers could sell their crops, (13) the United States, and that U. S. universities could admit only (14) . In each case there are people who gain and people who lose from (15) international trade. In any case, less or more international trade will have (16) on your career as well as your life.
For years, American companies are often faced with the choice of buying (17) , which are expensive, and foreign-made goods, which are cheap. If the company buys American goods, it may (18) taxpayers by failing to keep prices low. But if it buys foreign goods, it may (19) the jobs of American workers. Recently, Congress has passed a law compelling American companies with government contracts to (20) domestic goods and services.

For centuries people have been fighting over whether governments should allow trade between countries. There have been, and probably always will be, (1) to the argument. Some people argue that just (2) is best for both the country and the world. Others argue that trade with other countries (3) for some people to make a good living. Both sides are at least (4) .
International trade matters a lot. Its effects on (5) are enormous. Imagine a world in which your country (6) at all with other countries. Imagine what kind of job you would be (7) and what goods you could buy or not buy in such a world.
For the United States, for example, start by imagining that it lived without its (8) a year in imported oil, and cut back on its (9) because the remaining domestic oil and other energy sources were (10) . Producers and consumers in other parts of the economy would (11) if they were suddenly stripped of foreign-made goods like CD players and clothing. On the (12) side, suppose that Boeing could sell airplanes, and farmers could sell their crops, (13) the United States, and that U. S. universities could admit only (14) . In each case there are people who gain and people who lose from (15) international trade. In any case, less or more international trade will have (16) on your career as well as your life.
For years, American companies are often faced with the choice of buying (17) , which are expensive, and foreign-made goods, which are cheap. If the company buys American goods, it may (18) taxpayers by failing to keep prices low. But if it buys foreign goods, it may (19) the jobs of American workers. Recently, Congress has passed a law compelling American companies with government contracts to (20) domestic goods and services.