Multiple choice

Which of the following methods is not present in the AbstractDocument class in java?

  1. getLength()

  2. getStartPosition()

  3. getDocumentContent()

  4. writeUnlock()

  5. getEndPosition()

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

This is the correct answer. There is no method named getDocumentContent() in the AbstractDocument class. The correct method name is getContent(). This method is used to retrieve the content for a document.