Discussion:
Task:
You coded the following in the Test.java
int [ ] a = { 1, 2, 3 );
System.out.println ( a );
The code compiles properly and runs, but the result is not what you expected; the output is similar to the following:
[I@f0326267
Q: Explain what the problem is how to fix it.