Existing from a synchronized block.
Calling the wait method on an object.
Calling notify method on an object.
Calling read method on an InputStream object.
Calling the SetPriority method on a Thread object.
第1题:
Which of the following best describes Simultaneous Multi-threading (SMT)?()
第2题:
Given: foo and bar are public references available to many other threads, foo refers to a Thread and bar is an Object. The thread foo is currently executing bar.wait(). From another thread, what provides the most reliable way to ensure that foo will stop executing wait()?()
第3题:
foo and bar are public references available to many other threads. foo refers to a Thread and bar is an Object. The thread foo is currently executing bar.wait(). From another thread, which statement is the most reliable way to ensue that foo will stop executing wait()?
第4题:
Given: foo and bar are public references available to many other threads. foo refers to a Thread and bar is anObject. The thread foo is currently executing bar.wait(). From another thread,what provides the most reliable wayto ensure that foo will stop executing wait()?
第5题:
Which two code fragments will execute the method doStuff() in a separate thread?()
第6题:
The method waitforId() in class MediaTracker is called.
The run() method that the thread is executing ends.
The call to the start() method of the Thread object returns.
The suspend() method is called on the Thread object.
The wait() method is called on the Thread object.
第7题:
Exiting from a synchronized block.
Calling the wait method on an object.
Calling the notify method on an object.
Calling the notifyAll method on an object.
Calling the setPriority method on a thread object.
第8题:
Power inverter
AC adapter
Multicard reader
Backlight
Keyboard
第9题:
new Thread() {public void run() { doStuff(); }};
new Thread() {public void start() { doStuff(); }};
new Thread() {public void start() { doStuff(); }}.run();
new Thread() {public void run() { doStuff(); }}.start();
new Thread(new Runnable() {public void run() { doStuff(); }}).start();
第10题:
iSQL*Plus commands cannot be abbreviated.
iSQL*Plus commands are accessed from a browser.
iSQL*Plus commands are used to manipulate data in tables.
iSQL*Plus commands manipulate table definitions in the database.
iSQL*Plus is the Oracle proprietary interface for executing SQL statements.
第11题:
You cannot create a table form within Forms.
You must use the FORMS_DDL built-in to create the table.
You must use the DBMS_DYNAMIC_DDL package to create the table.
You can write the CREATE TABLE statement directly into the trigger.
第12题:
foo.notify();
bar.notify();
foo.notifyAll();
Thread.notify();
bar.notiFYAll();
Object.notify();
第13题:
Under which circumstances will a thread stop?()
第14题:
Which two can directly cause a thread to stop executing?()
第15题:
Which two CANNOT directly cause a thread to stop executing? ()
第16题:
Which two statements are true?()
第17题:
Which two events will cause a slave server to create a new relay log file?()
第18题:
Execution of the FLUSH LOGS statement
Starting of the SQL thread
Reaching the slave_pendign _jobs_size_max limit
Execution of FULSH TABLES WITH READ LOCK
Starting of the I/O thread
第19题:
Calling the yield method.
Calling the wait method on an object.
Calling the notify method on an object.
Calling the notifyAll method on an object.
Calling the start method on another Thread object.
第20题:
The web Server ThreadsPerChild directive could be set too low.
The Web Container Thread Pool Minimum Size could be set too high.
The Web Container Thread Pool Maximum Size could be set too high.
The growable thread pool setting could be disabled for the Web Container.
第21题:
A POWER5 microprocessor feature that allocates two processors to each application
A Workload Manager feature that allows two processing threads to be executing on a single processor
An AIX v5.2 feature that allows two processing threads to be executing on a single processor concurrently
A POWER5 microprocessor feature that allows two processing threads to be executing on a single processor concurrently
第22题:
foo.notify();
bar.notify();
foo.notifyAll();
Thread.notify();
bar.notifyAll();
Object.notify();
第23题:
foo.notify();
bar.notify();
foo.notifyAll();
Thread.notify();
bar.notifyAll();