show/hide this revision's text 3 Clarification on the CDATA piece

Your correct answer is either A & C if you are working with regular XML data, OR if inside as the " is not a CDATA section A could also character that must be correctencoded in element data.

You should always be XML encoding characters such as ", >, <, and & to ensure that you don't have issues if they are NOT inside a CDATA section

Edit: " only needs . These are key items to be escaped when concerned about for element data.

When talking about attributes you have to then also be careful of ' and " inside an attribute , it values depending on the type of symbol you use to surround the value.

I've found that often encoding " and ' is not needed a better idea in all aspects as it helps at times when converting to other formats, where the element level" or ' might cause problems there as well.

show/hide this revision's text 2 Added clarification

Your correct answer is either C if you are working with regular XML data, OR if inside a CDATA section A could also be correct.

You should always be XML encoding characters such as ", >, <, and & to ensure that you don't have issues if they are NOT inside a CDATA section

Edit: " only needs to be escaped when inside an attribute, it is not needed at the element level

show/hide this revision's text 1

Your correct answer is either C if you are working with regular XML data, OR if inside a CDATA section A could also be correct.

You should always be XML encoding characters such as ", >, <, and & to ensure that you don't have issues if they are NOT inside a CDATA section