What does the following code output?
String[] parts = "Java:Python::C++".split(":"); System.out.println(parts.length);
5
2
3
4