What will be the output when the following code segment is executed?
A) String str = "welcome to CST1201";
B) String code;
C) int len = str.length();
D) System.out.println(len);
E) System.out.println(str.charAt(3));
F) System.out.println(str.subString(len-4);