About Question enthuware.ocajp.i.v7.2.1189 :

All the posts and topics that contain only an error report will be moved here after the error is corrected. This is to ensure that when users view a question in ETS Viewer, the "Discuss" button will not indicate the presence of a discussion that adds no value to the question.

Moderators: Site Manager, fjwalraven

Post Reply
ETS User

About Question enthuware.ocajp.i.v7.2.1189 :

Post by ETS User »

What is written in the answer:
..."Since Runnable is an interface, cannot be instantiated like this. But you can do : Thread t = new Runnable(){                        public void run(){ }                     };"...

is not correct. What you can do is: Thread t = new Thread(new Runnable() {
public void run(){ }
});

Regards, Leo

admin
Site Admin
Posts: 10388
Joined: Fri Sep 10, 2010 9:26 pm
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1189 :

Post by admin »

You are right. The type of the variable should be Runnable:

Code: Select all

Runnable t = new Runnable(){ 
                        public void run(){ }
                     };
Should be fixed asap.

thank you for your feedback!

Guest

Re: About Question enthuware.ocajp.i.v7.2.1189 :

Post by Guest »

It would be nice if your test engine reminder the user if the proper number of options has not been selected... this is what the real exam does.

Thanks,
Robert

admin
Site Admin
Posts: 10388
Joined: Fri Sep 10, 2010 9:26 pm
Contact:

Re: About Question enthuware.ocajp.i.v7.2.1189 :

Post by admin »

Guest wrote:It would be nice if your test engine reminder the user if the proper number of options has not been selected... this is what the real exam does.

Thanks,
Robert
Thank you for your suggestion, Robert. We will get on it right away.

It is partially there because it doesn't let you select more than the required number of correct options. Nevertheless, it should give out a warning if lesser than required number of correct options are selected.
Paul.

Post Reply

Who is online

Users browsing this forum: No registered users and 2 guests