Question: 11. public void testifA() { 12. if (testlfB(True)) { 13. System.out.println(True); 14. } else { 15. System.out.println(Not true); 16. } 17.} 18. public Boolean testlfB(String

 11. public void testifA() { 12. if (testlfB("True")) { 13. System.out.println("True");

11. public void testifA() { 12. if (testlfB("True")) { 13. System.out.println("True"); 14. } else { 15. System.out.println("Not true"); 16. } 17.} 18. public Boolean testlfB(String str) { 19. return Boolean.valueOf(str); 20.} What is the result when method testIfA is invoked? A. True B. Not true C. An exception is thrown at runtime. D. Compilation fails because of an error at line 12 E. Compilation fails because of an error at line 19

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!