In Java, please.
I only want the code for this program.
Question 1 (12 Marks)
Boolean variables (1 mark)
Set to false (2 marks)
Each position (i, j) in the array (2 marks): [] is printed if board[i][j] is false, o[*] is printed if board[i][i] is true. Complete the setupBoard method to update board to match the pattern shown below (7 marks).
[X[[[[] ][][][x] (][ ][ ][ ][ ][ ][][] [][][][ ][ ][x][][X] [X][ ][X][ ][ ][X][ ][x] [X][ ][ ][ ][x][x][ ][x] [X][ 1[ ][ ][ ][X] [x][ ][ 1[ I ][x] [X][ ][ It ][ ][ ][X] [X[ ][ ] ][ ][][x] [][][ [i[[[[x]
The text boxes above should output to the console when the main method is run.