0 Comments
Answer:
Yes, The statement, double d[] = new double[30];, is valid in Java for creating an array of type double with a size of 30 elements.
Step-by-step explanation:
This is the correct way to create a new array in Java using the new keyword.