Pg 141 : 6.1.2 Usage of if and if-else in the exam

Date: 2019-11-24
Status: Fixed
Fixedinbuild:
24
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.
Reportedby:
Username987654

 Back