Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

(1) Represent the data using the XML specification (2) Validate your XML data ag

ID: 3616808 • Letter: #

Question

(1) Represent the data using the XML specification

(2) Validate your XML data against the specification

(3) Create an XSL that displays the data in (1) in a userreadable format.

<?xml version="1.0"encoding="utf-8"?>

<!DOCTYPE QuizQuestions[<!ENTITY % Question SYSTEM "Question.dtd">
%Question;
]>

<QuizQuestions>

<Users>
<UserId>100</UserId>
<UserName>Jani</UserName>
<UserPassword>pwd1234</UserPassword>
<UserEmail>amoghnagol@yahoo.com</UserEmail>
<UserCreateDate>10/10/2010</UserCreateDate>
<UserLastLoginDate>01/02/2010</UserLastLoginDate>
<UserIsDeletedBit>true</UserIsDeletedBit>
<UserType>Professor</UserType>
     </Users>

<Question>

  <QuestionID>10</QuestionID>
  <QuestionTitleText>User choicequestions</QuestionTitleText>
  <QuestionText>When is theexam</QuestionText>
  <QuestionTypeText>Multiple ChoiceQuestion</QuestionTypeText>
  <EnteredByUserName>Jani</EnteredByUserName>
  <CreateDate>02/08/2010</CreateDate>
  <LastModifiedDate>02/09/2010</LastModifiedDate>
</Question>

<QuestionType>
  <QuestionTypeText>Multiple ChoiceQuestion</QuestionTypeText>
  <QuestionTypeDescription>My first test questionto test the XML structure</QuestionTypeDescription>
</QuestionType>

<MultipleChoiceAnswer>
  <QuestionID>10</QuestionID>
  <AnswerID>1</AnswerID>
  <AnswerText>April</AnswerText>
  <PercentCorrect>50</PercentCorrect>
  <EnteredByUserName>Jani</EnteredByUserName>
  <CreatedDate>01/01/2010</CreatedDate>
  <LastModifiedDate>01/10/2010</LastModifiedDate>
</MultipleChoiceAnswer>

<MultipleChoiceAnswer>
  <QuestionID>10</QuestionID>
  <AnswerID>1</AnswerID>
  <AnswerText>May</AnswerText>
  <PercentCorrect>50</PercentCorrect>
  <EnteredByUserName>Jani</EnteredByUserName>
  <CreatedDate>01/02/2010</CreatedDate>
  <LastModifiedDate>01/11/2010</LastModifiedDate>
</MultipleChoiceAnswer>


<NumericAnswer>
  <QuestionID>10</QuestionID>
  <AnswerID>1</AnswerID>
  <AnswerValue>100</AnswerValue>
  <AnswerMinimum>0</AnswerMinimum>
  <AnswerMaximum>99999999.99</AnswerMaximum>
  <EnteredByUserName>Jani</EnteredByUserName>
  <CreatedDate>01/10/2010</CreatedDate>
  <LastModifiedDate>02/22/2010</LastModifiedDate>
</NumericAnswer>


<ShortAnswer>
  <QuestionID>10</QuestionID>
  <AnswerID>1</AnswerID>
  <AnswerText>This is test only data to check thequiz questions dtd structure and the XMLschema</AnswerText>
  <PercentCorrect>75</PercentCorrect>
  <EnteredByUserName>Jani</EnteredByUserName>
  <CaseSensitiveBit>true</CaseSensitiveBit>
  <CreatedDate>01/02/2010</CreatedDate>
  <LastModifiedDate>02/10/2010</LastModifiedDate>
</ShortAnswer>


</QuizQuestions>

Explanation / Answer

Thanks for the XSL file. But in my request, I also stated thatI need help on updating existing XML file to match the standards orspecifications per http://www.imsglobal.org/question/qti_v2p0/imsqti_implv2p0.html (IMS Global Standards). Can you please look into it and update XML file I sent tomatch the standards and then the output should be as youshowed. THanks, Suresh. Can you please look into it and update XML file I sent tomatch the standards and then the output should be as youshowed. THanks, Suresh.