Multiple choice Which of the following methods is not present in the TextArea class in java? getCols() getMinimumSize() getRows() append(String str) insert(String str, int pos) Reveal answer Fill a bubble to check yourself A Correct answer Explanation This is the correct choice. There is no method named getCols() present in the TextArea class. The correct method name is getColumns(), which is used to retrieve the number of columns in this text area.