Page 3 of 7 Results 21 - 30 of 64

Errata Entries Order by:  Page Number  Reported By  Reported On  Fixed In Build
Pg: 51
Status: Fixed
Fixed in Build: 12
Reported On: 2019-01-02
Reported By: OCAJO1
Location: 2.7 Compare and contrast the features and components of Java - Point 6
Old Text:
A Java application can be run with a .
New Text:
A Java application can be run with a Security Manager.
Comments:

Pg: 59
Status: Fixed
Fixed in Build: 25
Reported On: 2020-02-23
Reported By: karthiknk81
Location: 3.1 (Table of Data types)
Old Text:
'\uo0061'
New Text:
'\u0061'
Comments:

Pg: 71
Status: Fixed
Fixed in Build: 18
Reported On: 2019-04-08
Reported By: natasci
Location: 3.3 Assigning float to int or double to long and vice-versa
Old Text:
long g = 9223372036854775807; //Long.MAX_VALUE;
New Text:
long g = 9223372036854775807L; //Long.MAX_VALUE;
Comments:
L is missing.
Pg: 61
Status: Fixed
Fixed in Build: 20
Reported On: 2019-07-30
Reported By: Username987654
Location: 3.3.1
Old Text:
Object obj2 = obj; //initializing obj using another reference
New Text:
Object obj2 = obj; //initializing obj2 using another reference
Comments:

Pg: 71
Status: Fixed
Fixed in Build: 09
Reported On: 2018-11-26
Reported By: Username987654
Location: 3.3.3 - Assigning float to int or double to long and vice-versa
Old Text:
Two errors - 1. Part of the sentence, "Java allows such assignments without a cast because it is possible to get back the exact same int or long value from a float or a double if you round them off." must be removed. 2. The statement, "i = f1; //will not compile" in the code should be removed.
New Text:
Java allows such assignments without a cast nonetheless.
Comments:

Pg: 68
Status: Fixed
Fixed in Build: 14
Reported On: 2019-01-10
Reported By:
Location: 3.3.3 - Assigning values to variables - primitive assignment
Old Text:
For example, you know that the size of a byte (8 bits) is smaller than the size of an int (16 bits)
New Text:
For example, you know that the size of a byte (8 bits) is smaller than the size of an int (32 bits)
Comments:

Pg: 66
Status: Fixed
Fixed in Build: 07
Reported On: 2018-10-20
Reported By: Flex567
Location: 3.3.3 - literals
Old Text:
You cannot start or end a literal with an underscore and cannot use multiple underscores consecutively.
New Text:
You cannot start or end a literal with an underscore. You can also use multiple underscores consecutively. You don't need to worry about the rules governing the usage of underscores in hexadecimal, binary, and octal number formats.
Comments:

Pg: 82
Status: Fixed
Fixed in Build: 14
Reported On: 2019-01-09
Reported By: OCAJO1
Location: 3.5.3 - Garbage Collection for the exam
Old Text:
Diagrams are off by 1 step. Diagrams shown at step 2, 3, 4 should be at step 1, 2, and 3.
New Text:
Diagrams are aligned with the steps
Comments:
Diagrams and steps are correct. Only their alignment is wrong.
Pg: 95
Status: Fixed
Fixed in Build: 19
Reported On: 2019-06-19
Reported By: username987654
Location: 4.1.2
Old Text:
boolean[] ba = new boolean[3]; //an array of booleans of size 2
New Text:
boolean[] ba = new boolean[3]; //an array of booleans of size 3
Comments:

Pg: 103
Status: Fixed
Fixed in Build: 16
Reported On: 2019-02-07
Reported By: Username987654
Location: 4.3.1
Old Text:
iaa[0] = new int[2]; //ia[0] points to an array of ints of length 2 iaa[1] = new int[3]; //ia[1] points to an array of ints of length 3
New Text:
iaa[0] = new int[2]; //iaa[0] points to an array of ints of length 2 iaa[1] = new int[3]; //iaa[1] points to an array of ints of length 3
Comments:
ia should be iaa (in comments)

Page 3 of 7 Results 21 - 30 of 64