Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Inițializare corectă pentru un tablou bidimensional String:
String
String words[][] = new String();
String[][] words = {{"a","b"},{"c","d"}};
String[][] words = new String[2,2];
String[2][2] words = {...};
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!