Multiple choice technology testing

Predict the output of the following script the uses the below xml




      Rajesh
      111
      CS
      A


      Meera
      222
      Maths
      B


      Aarthi
      333
      Commerce
      C


Set xmlDoc = XMLUtil.CreateXMLFromFile("C:\...\students.xml") 
Set rt  = xmlDoc.GetRootElement 
Set rtChildColl = rt.ChildElements 
Set node = rtChildColl.Item(rtChildColl.Count) 
set nodeAtt = node.ChildElements 
Msgbox nodeAtt.Item(1).Value

  1. 222

  2. A

  3. No value. It returns an empty string

  4. Aarthi

Reveal answer Fill a bubble to check yourself
D Correct answer