weihnachtsquiz-2020/js/questions.js
2020-11-23 14:44:43 +01:00

21 lines
627 B
JavaScript

const questionCatalog = [
{
text: 'Wann wurde die Otto-Friedrich-Universität Bamberg gegründet?',
correctAnswerID: 2,
answers: [
{ id: 0, text: '1702' },
{ id: 1, text: '1628' },
{ id: 2, text: '1647' }
]
},
{
text: 'Welcher Lehrstuhl bzw. welche Professur ist der:die jüngste an der Fakultät WIAI?',
correctAnswerID: 0,
answers: [
{ id: 0, text: 'Informationssystemmanagement (Prof. Beimborn)' },
{ id: 1, text: 'Privatsphäre und Sicherheit in Informationssystemen (Prof. Herrmann)' },
{ id: 2, text: 'Smart Environments (Prof. Wolter)' }
]
}
]