(Choose 1 answer)
public class Example {
Given the following. What is the result?
public static void main(String[] args) {
String str="FPT";
str.concat(" University!");
str.toLowerCase();
System.out.println(str.length());
}
}
A. 0
B. 3
C. 14
D. 13
Q: 15
Osh