Page 7 of 7 Results 61 - 64 of 64

Errata Entries Order by:  Page Number  Reported By  Reported On  Fixed In Build
Pg: 44
Status: Fixed
Fixed in Build: 20
Reported On: 2019-07-29
Reported By: Username987654
Location: 2.4.1
Old Text:
Thus, you cannot use the simple name Values in your code if you haven’t imported taxes.* or taxes.Test already using the regular import statement.
New Text:
Thus, you cannot use the simple name Values in your code if you haven’t imported taxes.* or taxes.Values already using the regular import statement.
Comments:
taxes.Test should be changed to taxes.Values.
Pg: 51
Status: Fixed
Fixed in Build: 20
Reported On: 2019-07-30
Reported By: Username987654
Location: 2.7
Old Text:
If a subclass overrides a method of a base class and if the object referred to by a variable is of type subclass, then the subclass’s version of the method is used even if the declared type of the variable is of base class. This is also called .
New Text:
If a subclass overrides a method of a base class and if the object referred to by a variable is of type subclass, then the subclass’s version of the method is used even if the declared type of the variable is of base class. This is also called dynamic binding.
Comments:
The words "dynamic binding" are missing at the end.
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: 141
Status: Fixed
Fixed in Build: 24
Reported On: 2019-11-24
Reported By: Username987654
Location: 6.1.2 Usage of if and if-else in the exam
Old Text:
boolean flag = false; if( flag ) ; else System.out.println("false"); }
New Text:
boolean flag = false; if( flag ) ; else System.out.println("false");
Comments:
Closing curly brace at the end should be removed.

Page 7 of 7 Results 61 - 64 of 64