JirkaDellOro / Softwaredesign

Modul "Softwaredesign": Lektionen und Übungsaufgaben
12 stars 12 forks source link

Datenstruktur #28

Open JirkaDellOro opened 4 years ago

JirkaDellOro commented 4 years ago
JirkaDellOro commented 4 years ago

Eigenes Format

Question = Wie heißt die Hauptstadt von Deutschland?
Answer1 = London
Answer2 = Berlin
Answer3 = Paris
Korrekt = 2
JirkaDellOro commented 4 years ago

CSV

Wie heißt die Hauptstadt von Deutschland ; 2 ; London ; Berlin ; Paris
JirkaDellOro commented 4 years ago

XML

<Question>
  <QuestionText>
    Wie heißt die Hauptstadt von Deutschland?
  </QuestionText>
  <Answers>
     <Answer>
        London
     </Answer>
     <Answer>
        Berlin
     </Answer>
     <Answer>
        Paris
     </Answer>
  </Answers>
  <Correct>
    2
  </Correct>
</Question>
<Question text="Wie heißt die Hauptstadt von Deutschland?" correct="2">
  <Answers answer1="London" answer2="Berlin" answer3="Paris" > </Answers>
</Question>
JirkaDellOro commented 4 years ago

JSON ?