vanessabsearcy1408 vanessabsearcy1408 13-02-2024 Computers and Technology contestada For the following code, how many times would the while loop execute?StringTokenizer strToken = new StringTokenizer("Cars, trucks, and SUVs are all types of automobiles.");while (strToken.hasMoreTokens){System.out.println(strToken.nextToken());}