-->
当前位置:首页 > Luz 第6051页
Luz

Luz 管理员

暂无介绍

89860 篇文章 33 次评论

单选题:For exception, which statement below is **NOT** correct?

Luz5年前 (2021-05-10)1268
For exception, which statement below is **NOT** correct? @[D](2)A. It is possible to have a try block with out any cat…

单选题:Given:

Luz5年前 (2021-05-10)1020
Given:```Javavoid write() throws IOException { DataOutputStream out = new DataOutputStream( new BufferedOutputStream(…

单选题:Given:

Luz5年前 (2021-05-10)981
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

Luz5年前 (2021-05-10)923
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?

Luz5年前 (2021-05-10)991
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

Luz5年前 (2021-05-10)1141
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

Luz5年前 (2021-05-10)843
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?

Luz5年前 (2021-05-10)1377
Which of the following is not true about adapter classes? @[D](2)A. They implement their corresponding listener interfa…

单选题:Given:

Luz5年前 (2021-05-10)1071
Given: ```Java class Foo { int total; static class Increment extends Thread { public void run() { ++total; } }…

单选题:Which one below is defined by the Runnable interface?

Luz5年前 (2021-05-10)1036
Which one below is defined by the Runnable interface? @[D](2)A. sleep();B. start();C. wait();D. run();A.sleep();B.start…