I often _____________books at the weeken

题型:选择题

问题:

I often _____________ books at the weekends, but last weekend I _____________. [ ]

A. reads, did

B. reading, didn't

C. read, didn't

考点:一般现在时,动词单数第三人称否定句
题型:选择题

脊椎动物是指(  )

A.水中生活的动物

B.陆地生活的动物

C.高等动物

D.有脊柱的动物

题型:选择题

列式计算.

(1)7.8比1.05的6倍多多少?

(2)9.5比46.8除以3.6的商少多少?

题型:选择题

信度系数(r)( )。

A.0.70≤r<0.85不可用于团体比较

B.0.70≤r<0.85可用于团体比较

C.0.75≤r<0.80可用于团体比较

D.0.75≤r<0.80可用于个人比较

题型:选择题

如果把申报地价、公告(示)地价归为一类,这种分类是按照______划分的。

A.土地交易方式
B.土地价格形成方式
C.政府管理手段
D.土地价格使用目的

题型:选择题

请完成下列Java程序:创建一个具有2行3列的GridLayout管理器,包括Choice、Label、Button构件,布局为第1行包括一个Choice构件(包括2个选项item1和item2)、一个Label构件(当选择Choice构件中的选项时,Labe1构件显示相应的名称,即如果点击item1则Labe1中显示item1)和一个exit按钮(点击则退出应用程序),第2行包括3个Button构件。程序运行结果如下。


注意:请勿改动main()主方法和其他已有语句内容,仅在下划线处填入适当的语句。
源程序文件清单如下:
import java.awt.*;
import java.awt.event.*;
public class ex11_2 extends Frame implements ActionListener, ItemListener

private Label 1;
private String str="label";
private Choice choice11_2;
public static void main(String[] arg)

new ex11_2();

ex11_2 ()

setLayout (______);
choice11_2 = new Choice();
choice11_2.addItem("item1");
choice11_2.addItem("item2");choice11_2.______;
add(choice11_2);
l=new Label(str);
add(l);
Button exit11_2 = new Button("exit");
exit11_2.addActionListener(this);
add(exit11_2);
for(int i=0; i<3; i++)
add(new Button("button" + i));
setSize(300,300);
pack();
show();

public void actionPerformed(ActionEvent event)

if (event.getActionCommand ( ). equals ( "exit" ) )

System.exit(0);


public void itemStateChanged(ItemEvent event

str=choice11_2.getSelectedItem();
l.setText(str);

更多题库