What will the following Java code output?
String message = " Welcome to Java ";
String trimmed = message.trim();
System.out.println(trimmed.equals("Welcome to Java"));
What will the following Java code output?
String message = " Welcome to Java ";
String trimmed = message.trim();
System.out.println(trimmed.equals("Welcome to Java"));