Multiple choice technology programming languages For XML Parser to ignore a certain section of XML Document, which syntax is correct? <![CDATA[Text to be ignored]]> <PCDATA>Text to be ignored</PCDATA> <CDATA>Text to be ignored</CDATA> <xml:CDATA[Text to be ignored]> Reveal answer Fill a bubble to check yourself A Correct answer Explanation CDATA sections are delimited by and tell the XML parser to treat the enclosed content as literal character data, not markup. This is useful for including code, scripts, or text containing special characters like < and > without escaping them.