Page 1 of 1

About Question enthuware.ocpjp.v11.2.3146 :

Posted: Thu Sep 16, 2021 3:04 am
by samba2
Just a note, I believe this explaination contains an error:

Code: Select all

'c'|'d'    =  1100111  <== 100, same as 'g'.
The decimal representation should be "103":

Code: Select all

jshell> Integer.parseInt("1100111", 2)
$31 ==> 103

Re: About Question enthuware.ocpjp.v11.2.3146 :

Posted: Tue Sep 21, 2021 1:55 am
by admin
You are right. Fixed.

thank you for your feedback!

Re: About Question enthuware.ocpjp.v11.2.3146 :

Posted: Sat Apr 30, 2022 1:54 pm
by radupana
Are we expected to know what the value of 'c'|'b' is? Or is it enough that we deduce that it can't be 'c' or 'd' themselves?

Re: About Question enthuware.ocpjp.v11.2.3146 :

Posted: Sun May 01, 2022 2:36 am
by admin
No, you are not expected to know the binary values.