What is displayed by the following code?
```
public static void main(String[] args) {
String[] tokens = "Welcome to Java".split("o");
for (int i = 0; i < tokens.length; i++) {
System.out.print(tokens[i] + " ");
}
}
```
a. Welcome to Java
b. Welc me to Java
c. Welc me t Java
d. Welcome t Java
c. Welc me t Java
Computer Science & Information Technology
You might also like to view...
If you want to create two PivotTables using data from a table in your Access database, you would have to create a duplicate copy of the table
Indicate whether the statement is true or false
Computer Science & Information Technology
The IDL union type can be used for a parameter that will need to pass one of a small number of types. Use it to define the type of a parameter that is sometimes empty and sometimes has the type Value.
What will be an ideal response?
Computer Science & Information Technology