Guess The Answer First interface Main{ public static void main(String ... args){ System.out.println("EP8"); } } Options 1. EP8 will be...
Guess The Answer First class Main{ public static void main(String ... args){ Boolean b1= new Boolean("false"); Boolean b2= new...
GUESS THE ANSWER class Student{} public class Main{ public static void main(String ... args){ ...
Case 1(StringBuffer): public class Main{ public static void main(String ... args){ StringBuffer sb1= new StringBuffer("EP5"); ...
If you are reading this before Part 1. I recommend you to go through that blog because we are going to discuss case 3 scenario and case 1 and case 2...
class Demo{ public void call(Object obj){ System.out.println("OBJECT"); } public void call(String str){ ...