📚 Practice Mode

Java and C Programming Fundamentals

Learn at your own pace with hints and detailed explanations

1 / 20
Multiple Choice

package exceptions; public class TestException5 { static String trimString(String x) { return x.trim(); } public static void main(String[] args) { try { String s = trimString(null); System.out.println("s = "+s); } catch(Exception e) { System.out.println(" Exception "); } catch(NullPointerException ne) { System.out.println("Null Pointer Exception "); } } }

  1. s = tcs Exception
  2. s = tcs Null Pointer Exception
  3. Exception
  4. Compiler Error