weihnachtsquiz-2020/js/questions.js

48 lines
1.4 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const questionCatalog = [
{
type: 'choice',
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' }
]
},
{
type: 'choice',
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)' }
]
},
{
type: 'choice',
text: 'Wie hoch ist der Bamberger Kaiserdom?',
correctAnswerID: 1,
answers: [
{ id: 2, text: 'ca. 62 Meter' },
{ id: 1, text: 'ca. 75 Meter' },
{ id: 0, text: 'ca. 83 Meter' }
]
},
{
type: 'choice',
text: 'Sogar ein Papst kommt aus Bamberg. Welcher war das nochmal?',
correctAnswerID: 0,
answers: [
{ id: 0, text: 'Papst Clemens II. (10461047)' },
{ id: 1, text: 'Viktor II. (10551057)' },
{ id: 2, text: 'Honorius III. (12161227)' }
]
},
{
type: 'estimate',
text: 'Wie viele wissenschaftliche Mitarbeiter:innen und Postdocs treiben die Forschung und die Lehre an unserer Fakultät voran? (externe Doktorand:innen ausgeschlossen)',
correctAnswer: 74
}
]