Page 3 of 7 Results 21 - 30 of 64

Errata Entries Order by:  Page Number  Reported By  Reported On  Fixed In Build
Pg: 110
Status: Fixed
Fixed in Build: 06
Reported On: 2018-10-07
Reported By: Cristian Palau
Location: 5.1.1 - overview-of-operators-available-in-java
Old Text:
System.out.println(false != flag); //comparing a boolean with a Boolean, prints true because flag is false
New Text:
System.out.println(false != flag); //comparing a boolean with a Boolean, prints false because flag is false
Comments:

Pg: 116
Status: Fixed
Fixed in Build: 22
Reported On: 2019-10-06
Reported By: Fedor Lvovich Dobrotvorskii
Location: Assignment Operators
Old Text:
Simple assignment - It simply copies the value on the left to the variable on the right.
New Text:
Simple assignment - It simply copies the value on the right to the variable on the left.
Comments:
left and right are switched.
Pg: 120
Status: Fixed
Fixed in Build: 14
Reported On: 2018-12-04
Reported By: Username987654
Location: 5.1.1 - overview-of-operators -- Miscellaneous Operators
Old Text:
It returns true if the object pointed to by the reference variable on the left is of the type (or a subtype) of the type given on the left and false otherwise.
New Text:
It returns true if the object pointed to by the reference variable on the left is of the type (or a subtype) of the type given on the right and false otherwise.
Comments:
In the detail text of instanceof , section left should be right.
Pg: 124
Status: Fixed
Fixed in Build: 15
Reported On: 2019-01-25
Reported By: OCAJO1
Location: 5.1.3 - last line
Old Text:
c = \textbf{b *} a * (a++ - --b) * a * b
New Text:
c = b * a * (a++ - --b) * a * b
Comments:

Pg: 126
Status: Fixed
Fixed in Build: 22
Reported On: 2019-10-06
Reported By: Fedor Lvovich Dobrotvorskii
Location: 5.1.5 Numeric promotion and casting
Old Text:
byte b = 1; short s = -b; System.out.println(b);
New Text:
byte b = 1; short s = -b; System.out.println(s);
Comments:
It should print s instead of b.
Pg: 131
Status: Fixed
Fixed in Build: 19
Reported On: 2019-06-20
Reported By: Username987654
Location: 5.1.6
Old Text:
will be grouped as a = ( b = (c = 5) ;
New Text:
will be grouped as a = ( b = (c = 5)) ;
Comments:
Closing bracket is missing.
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.
Pg: 142
Status: Fixed
Fixed in Build: 23
Reported On: 2019-10-12
Reported By: Fedor Lvovich Dobrotvorskii
Location: Dangling else
Old Text:
If we go by the first interpretation, the code will print b, and ...
New Text:
If we go by the first interpretation, the code will print c, and ...
Comments:
b should be changed to c
Pg: 147
Status: Fixed
Fixed in Build: 16
Reported On: 2019-02-06
Reported By: OCAJ01
Location: 6.3 Use a switch statement
Old Text:
A allows to you use the ...
New Text:
A switch statement allows you to use the ...
Comments:

Pg: 167
Status: Fixed
Fixed in Build: 29
Reported On: 2020-03-06
Reported By: ardurn
Location: 7.5.2 Syntax of the enhanced for loop
Old Text:
java.util.Iterable
New Text:
java.lang.Iterable
Comments:

Page 3 of 7 Results 21 - 30 of 64