Page 1 of 1

About Question enthuware.ocpjp.ii.v11.2.1751 :

Posted: Wed Aug 28, 2019 5:25 pm
by dongyingname

Code: Select all

public boolean test(Book b) {             
	return isFiction(t);       //where t comes from?     
	//or return b.getGenre().equals("fiction");         
}

Do you mean

Code: Select all

public boolean test(Book b) {             
	return isFiction(b);            
	//or return b.getGenre().equals("fiction");         
}

Re: About Question enthuware.ocpjp.ii.v11.2.1751 :

Posted: Wed Aug 28, 2019 8:29 pm
by admin
Yes, it should be b. Fixed.
Thank you for your feedback!

Re: About Question enthuware.ocpjp.ii.v11.2.1751 :

Posted: Sat Sep 12, 2020 6:38 pm
by carlosx
Its September 2020 and still is not fixed! XD

Re: About Question enthuware.ocpjp.ii.v11.2.1751 :

Posted: Sat Sep 12, 2020 11:20 pm
by admin
It is fixed. Please make sure you are using the latest version of the question bank file.