Computer Science, asked by abcd65807, 8 months ago

How many arrays are created in the following code snippet:- public void main() { int[ ] a,b; double[ ] da=new double[10]; String[ ] animals={"cat", "fish","eagle"}; float[ ] salary;​

Answers

Answered by rohitkhajuria90
1

Answer:

5

Explanation:

int[] a

int[] b

double[] da

String [] animals

float[] salary

Similar questions