What will be the output of the following program?
public class StartsAndEnd {
public static void main(String a[]) {
String str = "There are many students with great application skills, we want to identify them and show them themselves and their capabilities.";
System.out.print(str.startsWith("The") + ", ");
System.out.print(str.endsWith("capabilities.") + ", ");
System.out.print(str.endsWith("lities.") + ", ");
System.out.print(str.startsWith("plication", 37) + ", ");
System.out.println(str.subSequence(15, 39));
}
}