What is the result of compiling and running the following code? class StringBufferTest{ public static void main(String[] args){ 1. StringBuffer result = new StringBuffer(); 2. StringBuffer s=null; 3. result.append(s); 4. result.insert(0,”123?); 5. System.out.println(result); } }
Reveal answer
Fill a bubble to check yourself