The term "RDBMS" stands for <span>relational database management system.
I hope this helped! :)</span>
To protect my computer form hacking and save my files
Answer:
String chessboard[][]=new String[6][6];
Explanation:
This is the declaration of a string 2-D array in java.
String is the data type of the variable.
chessboard is the name of the variable.
6 is the size of the 2-D array.
new is the keyword for allocating space to array.