173k views
4 votes
Write a Java statement that declares and creates an array of Strings named Breeds. Your array should be large enough to hold the names of 100 dog breeds.

User Zuddsy
by
4.5k points

1 Answer

6 votes

Answer: String[]Breeds = new String[100]

User TomerSan
by
4.7k points