DOM loads the whole xml to be parsed in the memory
A
Correct answer
Explanation
The Document Object Model (DOM) parser loads the entire XML document into memory and builds a tree structure for navigation and manipulation. This approach makes it easy to traverse the document, but it requires substantial memory for large files. Alternative parsers, such as SAX, process XML sequentially without loading the entire tree into memory.