[OCP 17 book] | [OCP 11 book] | [OCA 8 book] [OCP 8 book] [Practice tests book] [Blog] [JavaRanch FAQ] [How To Ask Questions] [Book Promos]
Other Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, TOGAF part 1 and part 2
Guillaume Bailly wrote:Hi,
In the introduction on page xxxiii there is a small typo in my opinion.
"The review questions in each chapter are designed to help you home in..."
should be "...hone in..."
I'm not a native speaker, so my apologies if this was correct and I got it wrong.
Kind regards,
Guillaume
[OCP 17 book] | [OCP 11 book] | [OCA 8 book] [OCP 8 book] [Practice tests book] [Blog] [JavaRanch FAQ] [How To Ask Questions] [Book Promos]
Other Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, TOGAF part 1 and part 2
Marco Olivi wrote:The IOException to be handled is actually on line 11, when a new FileInputStream is created.
[OCP 17 book] | [OCP 11 book] | [OCA 8 book] [OCP 8 book] [Practice tests book] [Blog] [JavaRanch FAQ] [How To Ask Questions] [Book Promos]
Other Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, TOGAF part 1 and part 2
A "Java letter" is a character for which the method Character.isJavaIdentifierStart(int) returns true.
A "Java letter-or-digit" is a character for which the method Character.isJavaIdentifierPart(int) returns true.
The "Java letters" include uppercase and lowercase ASCII Latin letters A-Z (\u0041-\u005a), and a-z (\u0061-\u007a), and, for historical reasons, the ASCII underscore (_, or \u005f) and dollar sign ($, or \u0024). The $ sign should be used only in mechanically generated source code or, rarely, to access pre-existing names on legacy systems.
[OCP 17 book] | [OCP 11 book] | [OCA 8 book] [OCP 8 book] [Practice tests book] [Blog] [JavaRanch FAQ] [How To Ask Questions] [Book Promos]
Other Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, TOGAF part 1 and part 2
[OCP 17 book] | [OCP 11 book] | [OCA 8 book] [OCP 8 book] [Practice tests book] [Blog] [JavaRanch FAQ] [How To Ask Questions] [Book Promos]
Other Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, TOGAF part 1 and part 2
László
Jeanne Boyarsky wrote:
Guillaume Bailly wrote:Hi,
In the introduction on page xxxiii there is a small typo in my opinion.
"The review questions in each chapter are designed to help you home in..."
should be "...hone in..."
I'm not a native speaker, so my apologies if this was correct and I got it wrong.
Kind regards,
Guillaume
You are correct. I added it to the errata. Interestingly, it was right in the Java 11 book. And this isn't a part we change so an editor must have misread.
Fernando László Temesi Villagrán wrote:1) On page 443, in the example the result should be 7 and not 8 on line .
Fernando László Temesi Villagrán wrote:2) In Table 9.6, (page 485) it says . It should be .
Fernando László Temesi Villagrán wrote:Where could I find the whole erratas table for this book?
[OCP 17 book] | [OCP 11 book] | [OCA 8 book] [OCP 8 book] [Practice tests book] [Blog] [JavaRanch FAQ] [How To Ask Questions] [Book Promos]
Other Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, TOGAF part 1 and part 2
Jeanne Boyarsky wrote:
Guillaume Bailly wrote:Hi,
In the introduction on page xxxiii there is a small typo in my opinion.
"The review questions in each chapter are designed to help you home in..."
should be "...hone in..."
I'm not a native speaker, so my apologies if this was correct and I got it wrong.
Kind regards,
Guillaume
You are correct. I added it to the errata. Interestingly, it was right in the Java 11 book. And this isn't a part we change so an editor must have misread.
Luiz Felipe Ribeiro wrote:Hi guys, the converted time, is okay?
It looks like that it should be 2:50 and not 12:50. (Chapter 4)
Sorry if this is not the right place to post
2022–06–20T06:50+05:30[Asia/Kolkata] // GMT 2022–06–20 01:20
2022–06–20T07:50-05:00[US/Eastern] // GMT 2022–06–20 12:50
OCA Java 6, OCP Java 6, OCP Java 8
Manuel Trumm wrote:Chapter 1, Review Question 5, Option B:
The answer is marked as false. However, if the object created on line 9 is eligible for GC after line 13, isn't it then also eligible for GC after line 14? Or does the System.gc() is interpreted as: the object might have been GCed and therefore might not in all cases be eligible i.e. it might not exist?
Manuel Trumm wrote:Chapter 6, Review question 14 D looks correct to me, although the answer says wrong. Anyone?
Guillaume Bailly wrote:
Manuel Trumm wrote:Chapter 6, Review question 14 D looks correct to me, although the answer says wrong. Anyone?
Notice that if class A is extended by B, then B is a subclass of A.
Also, notice that parentheses are used to list those resources, and semicolons are used to separate the declarations. This works just like declaring multiple indexes in a for loop.
The exports directive specifies that a package should be accessible outside the module. It can optionally restrict that export to a specific package.
Manuel Trumm wrote:The errata item's page reference is currently "xxiiii" instead of the correctly reported "xxxiii".
Manuel Trumm wrote:The ocp17 errata item:
xliv Intro #14 – || should be | Alessandro Putzu 8/22/22
is actually a ocp11 errata item and should read for ocp17:
lvii Intro #30 – || should be |
Artuur Oerlemans wrote:Hi,
I noticed a mistake one page 908 and page 961. On page 908 question 21 says to pick 2 answers, according to page 961 those are B and D. However only answer B is correct.
Manuel Trumm wrote:Chapter 1, Review Question 5, Option B:
The answer is marked as false. However, if the object created on line 9 is eligible for GC after line 13, isn't it then also eligible for GC after line 14? Or does the System.gc() is interpreted as: the object might have been GCed and therefore might not in all cases be eligible i.e. it might not exist?
Luiz Felipe Ribeiro wrote:Hi guys, the converted time, is okay?
It looks like that it should be 2:50 and not 12:50. (Chapter 4)
Sorry if this is not the right place to post
2022–06–20T06:50+05:30[Asia/Kolkata] // GMT 2022–06–20 01:20
2022–06–20T07:50-05:00[US/Eastern] // GMT 2022–06–20 12:50
Manuel Trumm wrote:Chapter 5, page 251 reads in the second last sentence of the page:
We ran rewrite our previous example [...]
and should be:
We can rewrite our previous example [...]
Manuel Trumm wrote:Chapter 6, Review question 14 D looks correct to me, although the answer says wrong. Anyone?
T Vergilio wrote:Hi Jeanne/Scott,
I hope you are both well. This is only a minor issue on page 565, last sentence of the section entitled Linking Streams to the Underlying data:
"First, it looks at the source and seeing three elements."
Did you mean to develop the thought process further here?
[OCP 17 book] | [OCP 11 book] | [OCA 8 book] [OCP 8 book] [Practice tests book] [Blog] [JavaRanch FAQ] [How To Ask Questions] [Book Promos]
Other Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, TOGAF part 1 and part 2
Manuel Trumm wrote:Chapter 11, page 616, "Basics of Try-with-Resources":
Also, notice that parentheses are used to list those resources, and semicolons are used to separate the declarations. This works just like declaring multiple indexes in a for loop.
Multiple indexes in for loop are separated by commas, while multiple resources are separated by semicolons. In addition, the type can be declared only once in a for loop.
Hence I don't understand the "works just like".
Manuel Trumm wrote:Chapter 12, page 711, Summary:
The exports directive specifies that a package should be accessible outside the module. It can optionally restrict that export to a specific package.
That should be "to a specific module"?
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime. |