Java 2 Exam Notes (Programmer's Exam)ISBN: 978-0-7821-2826-0
Paperback
258 pages
December 2000
This title is out-of-print and not currently available for purchase from this site.
|
Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below.
Chapter | Page | Details | Date | Print Run |
---|---|---|---|---|
Combined Errata Page 17 In the "abstract" section, 1st paragraph, last word should be "abstract", not "final".
Page 38 2nd para, see detailed description
Delete third sentence Page 43 1st paragraph after code block, 2nd line should read in part, "...on line 3 throws ClassNotFoundException." In the coding example on Lines 6 & 9, "getMessage" is a method and not a variable so should read "getMessage()"
Page 65 The Line: void run(Runnable r); Should Be: void run();
Page 80 1st bullet, the minimum value should be -2^(n-1), NOT -2^(n)-1.
Page 83 Question #1, answers should be B, D, and E. The explanation is correct.
Page 91 The sample indicates that if you cast a int 129 into a byte value that the result would be 127. This implies that the sign bit would be lost. This is incorrect. If you cast 129 into a byte you would get -127. I think what you meant for your example might have been better expressed if you had something like an integer,
Correction: In 1st para p.91 change "The new value would be 1" to" The new value would be -127". Page 99 replace 'no-zero' with 'non-zero'
Page 100 Ques. # 3, answer C should read "x >> 8".
Page 125 Add a closing brace to the doSomething() method and then add a line after line 7 that looks just like line 11. Renumber code lines.
Page 126 2nd para., 2nd part of 1st sentence should read "additionally, it has access to all final arguments and data of the enclosing method."
Page 127 Reader:
Author:
Page 174 Under "The max() abd min() Methods" The 2nd group of four bullets all should read "min" vs "max"
Page 178 Question 5 replace '.59' with '.5'.
Page 189 Reader: indexOf() and lastIndexOf() return int, not Object. Author: Correct. replace "Object" with "int" x2 Page 193 the size() method for the Map class is listed and says that it removes the number of mappings in the current map. It should say it "Returns" the number of mappings in the current map.
|