当前位置:首页
> Luz 第6051页
Luz 管理员
暂无介绍
89860 篇文章 33 次评论单选题:For exception, which statement below is **NOT** correct?
For exception, which statement below is **NOT** correct? @[D](2)A. It is possible to have a try block with out any cat…
单选题:Given:
Given:```Javavoid write() throws IOException { DataOutputStream out = new DataOutputStream( new BufferedOutputStream(…
单选题:Given:
Given:```Javaclass Century implements Runnable { public void run() { for ( int year = 1900; year ˂ 2000; year++ ) { S…
单选题:Which is the best way to receive events when a JButton component
Which is the best way to receive events when a JButton component is selected? @[B](2)A. Create an implementation of But…
单选题:Which of the following is used to display text on GUI?
Which of the following is used to display text on GUI? @[A](2)A. `Label`B. `String`C. `CheckBox`D. `StringBuffer`A.`La…
单选题:How can a programmer add a separator to a Menu? Assume there is
How can a programmer add a separator to a Menu? Assume there is a `Menu` object called `myMenu`. @[C](2)A. myMenu.add(Me…
单选题:Which method below is to be executed only once during a lifecycl
Which method below is to be executed only once during a lifecycle of an Applet @[A](2)A. init()B. paint()C. run()D. re…
单选题:Which of the following is not true about adapter classes?
Which of the following is not true about adapter classes? @[D](2)A. They implement their corresponding listener interfa…
单选题:Given:
Given: ```Java class Foo { int total; static class Increment extends Thread { public void run() { ++total; } }…
单选题:Which one below is defined by the Runnable interface?
Which one below is defined by the Runnable interface? @[D](2)A. sleep();B. start();C. wait();D. run();A.sleep();B.start…