Question:medium

In a computer game, each move requires pressing a button. When the button is pressed for the first time, as a move, the computer randomly chooses a cell from a 4x4 grid of Sixteen cells and puts an "X" mark on that cell. When the button is pressed subsequently, the computer randomly chooses a cell from the remaining unmarked cells and puts an "X" mark on that cell. This goes on till the end of the game. The game ends when either all the cells in any one row, or all the cells in any one column, are marked with "X". What is the maximum possible number of times a player has to press the button to finish the game?

Show Hint

Pigeonhole principle: With 4 rows, if you place 13 marks, at least one row will have 4 marks.
Updated On: Mar 30, 2026
  • 16
  • 6
  • 13
  • 4
  • 10
Show Solution

The Correct Option is C

Solution and Explanation

Was this answer helpful?
0