Multiple choice Which of the following methods is not present in the TableModel Interface in java? getValueAt(int rowIndex, int colIndex) getColCount() setValueAt(Object aValue, int rowIndex, int colIndex) getRowCount() isCellEditable(int rowIndex, int colIndex) Reveal answer Fill a bubble to check yourself B Correct answer Explanation This is the correct choice. There is no method named getColCount() in TableModel Interface. The correct method name is getColumnCount() and it returns the number of columns in a model.