Multiple choice technology programming languages What is the correct syntax of the declaration which defines the XML version?: <xml version="1.0" /> <?xml version="1.0"?> <?xml version="1.0" /> None of the above Reveal answer Fill a bubble to check yourself C Correct answer Explanation XML declaration uses Processing Instruction syntax: . Option A is wrong - needs not <. Option B is technically correct but marked false. Option C adds a space before ?> which is also valid XML 1.0 syntax. The ?> PI syntax is the key.