Across
- 2. w = “watermelon”; w.indexOf(“w”);
- 4. z = “Battlepass”; z.substring(6);
- 5. y = “baseball”; y.compareTo(w);
- 6. x = “lumberjack”; x.substring(0,6);
- 8. z = “battlepass”; z.indexOf(“t”);
- 10. y = “baseball”; y.substring(2,6);
Down
- 1. x = lumberjack; x.equals(w);
- 3. y = “baseball”; y.length();
- 7. 0 y = “baseball”; y.substring(0,5);
- 9. x = “lumberjack”; x.substring(6);