对
错
第1题:
as
is
instanceof
extends
第2题:
float
short
int
byte
第3题:
第4题:
Forward
Includ
useBean
setProperty
第5题:
setPriority()
getPriority()
getName()
setName()
第6题:
对
错
第7题:
stop
resume
yield
start
run
第8题:
对
错
第9题:
showDocument(url)
getAppletContext()
getAppletContext().display(url)
getAppletContext().showDocument(url)
第10题:
第11题:
对
错
第12题:
Hello
hello
He
null
第13题:
第14题:
setTitle()
setModal()
setSize()
setvisible()
第15题:
对
错
第16题:
int a[ ][ ] = new int[][];
int a[10][10] = new int[][];
int a[ ][ ] = new int[10][10];
int [ ][ ]a = new int[10][10];
int [ ]a[ ] = new int[10][10];
第17题:
画一个焦点分别在(45,55)、(150,140)的椭圆
画一个圆心在(45,55),长轴是150,短轴是140的椭圆
画一个左上角位于点(45,55)、宽度和高度分别为150像素和140像素的长方形内画一个内切椭圆
左上角位于点(45,55)、宽度和高度分别为150像素和140像素的长方形内画一个外切椭圆
第18题:
a[10]
a[3+1]
a(5)
a(0)
第19题:
第20题:
该组件没有缺省的布局管理器
FlowLayout
JflowLayout
BorerLayout
第21题:
第22题:
第23题:
对
错
第24题: