Page 1 of 1

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

Posted: Fri Jun 29, 2012 7:19 am
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

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

Posted: Fri Jun 29, 2012 10:03 am
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!

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

Posted: Mon Oct 29, 2012 9:41 am
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

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

Posted: Mon Oct 29, 2012 12:25 pm
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.