What will the following Java code output?
String fileName = "report.pdf";
boolean isPDF = fileName.endsWith(".pdf");
System.out.println(isPDF);
What will the following Java code output?
String fileName = "report.pdf";
boolean isPDF = fileName.endsWith(".pdf");
System.out.println(isPDF);