To populate <code>Dog[] dogs = new Dog[3];</code>:
- A
Cannot create Dog array
- B
dogs.fill();
- Ccheck_circle
for (int i = 0; i < dogs.length; i++) dogs[i] = new Dog(...);
- D
Compiler does it automatically
Explanation
Iterate and assign each slot to a new Dog.