weihnachtsquiz-2020/js/questions.js
2023-01-12 10:34:58 +01:00

113 lines
3.6 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 Dom?',
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: 'choice',
text: 'In welcher Straße befindet sich die Außenfassade des Hauses von Herrn Taschenbier in der Verfilmung von „Das Sams“ durch den holländischen Regisseur Ben Verbong?',
correctAnswerID: 2,
answers: [
{ id: 0, text: 'Kleberstraße 30' },
{ id: 1, text: 'Grüner Markt 13' },
{ id: 2, text: 'Judenstraße 16' }
]
},
{
type: 'choice',
text: 'In welchem Jahr wurde nach einem Großbrand im Bamberger Dom ein kompletter Neubau erforderlich?',
correctAnswerID: 1,
answers: [
{ id: 0, text: '1081 n. Chr.' },
{ id: 1, text: '1185 n. Chr.' },
{ id: 2, text: '1020 n. Chr.' }
]
},
{
type: 'estimate',
text: 'Wie viele für Studierende zugängliche Toiletten („Porzellanthröne”) gibt es an der Weberei?',
correctAnswer: 109
},
{
type: 'estimate',
text: 'Wie viele Professor:innen lehren und forschen aktuell an der Fakultät WIAI?',
correctAnswer: 16
},
{
type: 'estimate',
text: 'Wie viele Studierende sind im Wintersemester 2020/21 insgesamt aktuell an der Universität Bamberg eingeschrieben? (Stand: 29.10.2020)',
correctAnswer: 12475
},
{
type: 'estimate',
text: 'Wie viele Personen studieren aktuell an der Fakultät WIAI? (Stand: 29.10.2020)',
correctAnswer: 2105
},
{
type: 'estimate',
text: 'Wie viele neue Studierende haben dieses Wintersemester trotz Corona an der Fakultät WIAI ein Studium begonnen? (Stand: 29.10.2020)',
correctAnswer: 334
},
{
type: 'estimate',
text: 'Wie viele Meter über dem Meeresspiegel liegt die Altenburg und überblickt somit ungehindert ganz Bamberg?',
correctAnswer: 390
},
{
type: 'estimate',
text: 'Auf wie viele Standorte ist die Universität Bamberg verteilt? (einschließlich Prüfungsräume wie den “Volkspark”)',
correctAnswer: 57
},
{
type: 'estimate',
text: 'Wie viele eigene (Teil-)Bibliotheken hat die Universität Bamberg?',
correctAnswer: 6
},
{
type: 'estimate',
text: 'Wie viele Jahre vergingen zwischen der Grundsteinlegung des Bamberger Doms und seiner Weihe?',
correctAnswer: 8
},
{
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
}
]