Answer:
Explanation:
String str = "Broccoli is delicious.";
String[] Secondstr = str.split(" ");
System.out.println("second word is " + Secondstr[1]);
The answer would be D. New Slide
Answer:
Recursion is calling of a function from within that same function