Text enhanced on OCP 1Z0-815 BOOK Deshmukh, Hanumant Page 250
Posted: Sun Feb 23, 2020 11:00 am
States correctly that in page 250 the variables on the interface and public by default but also a static + final i think it would be great if that would be added to it.
In transformed into

Code: Select all
interface Movable{
int STEP=10;
}
Code: Select all
interface Movable{
public static final int STEP=10;
}

