I newbie in Java and learning it. I got a question related to array, can you please look into it?
I am getting following output: [[Ljava.lang.String;@7a982589 from below code:
String[][] multi = new String [][] {
{ "Scenarios", "Description", "1.0", "1.1", "1.2"},
{ "S1", "Verify hotel search", "Y", "Y", "Y"},
};
System.out.println(multi);
While if I place following:
System.out.println(multi[0][1]);
I am getting correct output. Description.
Now, why I am not getting entire array through "multi" variable.