Valid 1z0-809 Dumps shared by ExamDiscuss.com for Helping Passing 1z0-809 Exam! ExamDiscuss.com now offer the newest 1z0-809 exam dumps, the ExamDiscuss.com 1z0-809 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 1z0-809 dumps with Test Engine here:
Given: class RateOfInterest { public static void main (String[] args) { int rateOfInterest = 0; String accountType = "LOAN"; switch (accountType) { case "RD"; rateOfInterest = 5; break; case "FD"; rateOfInterest = 10; break; default: assert false: "No interest for this account"; //line n1 } System.out.println ("Rate of interest:" + rateOfInterest); } } and the command: java -ea RateOfInterest What is the result?