complete feedback added
This commit is contained in:
+55
-55
@@ -262,43 +262,43 @@ class DefaultDeck {
|
||||
totalCorrectAttempts: 4,
|
||||
totalAttempts: 4,
|
||||
),
|
||||
// Question 6 - Progress (2 consecutive correct, not yet known)
|
||||
// Question 6 - Known
|
||||
Question(
|
||||
id: 'gk_6',
|
||||
prompt: 'In which year did World War II end?',
|
||||
answers: ['1943', '1944', '1945', '1946'],
|
||||
correctAnswerIndices: [2],
|
||||
consecutiveCorrect: 2,
|
||||
isKnown: false,
|
||||
consecutiveCorrect: 3,
|
||||
isKnown: true,
|
||||
priorityPoints: 0,
|
||||
lastAttemptIndex: 3,
|
||||
totalCorrectAttempts: 3,
|
||||
totalCorrectAttempts: 4,
|
||||
totalAttempts: 4,
|
||||
),
|
||||
// Question 7 - Progress (1 consecutive correct)
|
||||
// Question 7 - Known
|
||||
Question(
|
||||
id: 'gk_7',
|
||||
prompt: 'What is the smallest prime number?',
|
||||
answers: ['0', '1', '2', '3'],
|
||||
correctAnswerIndices: [2],
|
||||
consecutiveCorrect: 1,
|
||||
isKnown: false,
|
||||
consecutiveCorrect: 3,
|
||||
isKnown: true,
|
||||
priorityPoints: 0,
|
||||
lastAttemptIndex: 3,
|
||||
totalCorrectAttempts: 2,
|
||||
totalCorrectAttempts: 4,
|
||||
totalAttempts: 4,
|
||||
),
|
||||
// Question 8 - Some mistakes (has priority points from incorrect answers)
|
||||
// Question 8 - Known
|
||||
Question(
|
||||
id: 'gk_8',
|
||||
prompt: 'Which gas makes up approximately 78% of Earth\'s atmosphere?',
|
||||
answers: ['Oxygen', 'Carbon Dioxide', 'Nitrogen', 'Argon'],
|
||||
correctAnswerIndices: [2],
|
||||
consecutiveCorrect: 0,
|
||||
isKnown: false,
|
||||
priorityPoints: 5,
|
||||
lastAttemptIndex: 2,
|
||||
totalCorrectAttempts: 2,
|
||||
consecutiveCorrect: 3,
|
||||
isKnown: true,
|
||||
priorityPoints: 0,
|
||||
lastAttemptIndex: 3,
|
||||
totalCorrectAttempts: 4,
|
||||
totalAttempts: 4,
|
||||
),
|
||||
// Question 9 - Known
|
||||
@@ -327,17 +327,17 @@ class DefaultDeck {
|
||||
totalCorrectAttempts: 4,
|
||||
totalAttempts: 4,
|
||||
),
|
||||
// Question 11 - Progress
|
||||
// Question 11 - Known
|
||||
Question(
|
||||
id: 'gk_11',
|
||||
prompt: 'What is the speed of light in a vacuum (approximately)?',
|
||||
answers: ['300,000 km/s', '150,000 km/s', '450,000 km/s', '600,000 km/s'],
|
||||
correctAnswerIndices: [0],
|
||||
consecutiveCorrect: 2,
|
||||
isKnown: false,
|
||||
consecutiveCorrect: 3,
|
||||
isKnown: true,
|
||||
priorityPoints: 0,
|
||||
lastAttemptIndex: 3,
|
||||
totalCorrectAttempts: 3,
|
||||
totalCorrectAttempts: 4,
|
||||
totalAttempts: 4,
|
||||
),
|
||||
// Question 12 - Known
|
||||
@@ -353,30 +353,30 @@ class DefaultDeck {
|
||||
totalCorrectAttempts: 4,
|
||||
totalAttempts: 4,
|
||||
),
|
||||
// Question 13 - Some mistakes
|
||||
// Question 13 - Known
|
||||
Question(
|
||||
id: 'gk_13',
|
||||
prompt: 'What is the hardest natural substance on Earth?',
|
||||
answers: ['Gold', 'Diamond', 'Platinum', 'Titanium'],
|
||||
correctAnswerIndices: [1],
|
||||
consecutiveCorrect: 0,
|
||||
isKnown: false,
|
||||
priorityPoints: 3,
|
||||
lastAttemptIndex: 1,
|
||||
totalCorrectAttempts: 1,
|
||||
consecutiveCorrect: 3,
|
||||
isKnown: true,
|
||||
priorityPoints: 0,
|
||||
lastAttemptIndex: 3,
|
||||
totalCorrectAttempts: 4,
|
||||
totalAttempts: 4,
|
||||
),
|
||||
// Question 14 - Progress
|
||||
// Question 14 - Known
|
||||
Question(
|
||||
id: 'gk_14',
|
||||
prompt: 'How many continents are there on Earth?',
|
||||
answers: ['5', '6', '7', '8'],
|
||||
correctAnswerIndices: [2],
|
||||
consecutiveCorrect: 1,
|
||||
isKnown: false,
|
||||
consecutiveCorrect: 3,
|
||||
isKnown: true,
|
||||
priorityPoints: 0,
|
||||
lastAttemptIndex: 3,
|
||||
totalCorrectAttempts: 2,
|
||||
totalCorrectAttempts: 4,
|
||||
totalAttempts: 4,
|
||||
),
|
||||
// Question 15 - Known
|
||||
@@ -418,12 +418,38 @@ class DefaultDeck {
|
||||
totalCorrectAttempts: 4,
|
||||
totalAttempts: 4,
|
||||
),
|
||||
// Question 18 - Progress
|
||||
// Question 18 - Known
|
||||
Question(
|
||||
id: 'gk_18',
|
||||
prompt: 'Which element has the atomic number 1?',
|
||||
answers: ['Helium', 'Hydrogen', 'Lithium', 'Carbon'],
|
||||
correctAnswerIndices: [1],
|
||||
consecutiveCorrect: 3,
|
||||
isKnown: true,
|
||||
priorityPoints: 0,
|
||||
lastAttemptIndex: 3,
|
||||
totalCorrectAttempts: 4,
|
||||
totalAttempts: 4,
|
||||
),
|
||||
// Question 19 - Known
|
||||
Question(
|
||||
id: 'gk_19',
|
||||
prompt: 'What is the largest desert in the world?',
|
||||
answers: ['Gobi Desert', 'Sahara Desert', 'Antarctic Desert', 'Arabian Desert'],
|
||||
correctAnswerIndices: [2],
|
||||
consecutiveCorrect: 3,
|
||||
isKnown: true,
|
||||
priorityPoints: 0,
|
||||
lastAttemptIndex: 3,
|
||||
totalCorrectAttempts: 4,
|
||||
totalAttempts: 4,
|
||||
),
|
||||
// Question 20 - Not yet known (only one left!)
|
||||
Question(
|
||||
id: 'gk_20',
|
||||
prompt: 'Who invented the telephone?',
|
||||
answers: ['Thomas Edison', 'Alexander Graham Bell', 'Nikola Tesla', 'Guglielmo Marconi'],
|
||||
correctAnswerIndices: [1],
|
||||
consecutiveCorrect: 2,
|
||||
isKnown: false,
|
||||
priorityPoints: 0,
|
||||
@@ -431,32 +457,6 @@ class DefaultDeck {
|
||||
totalCorrectAttempts: 3,
|
||||
totalAttempts: 4,
|
||||
),
|
||||
// Question 19 - Some mistakes
|
||||
Question(
|
||||
id: 'gk_19',
|
||||
prompt: 'What is the largest desert in the world?',
|
||||
answers: ['Gobi Desert', 'Sahara Desert', 'Antarctic Desert', 'Arabian Desert'],
|
||||
correctAnswerIndices: [2],
|
||||
consecutiveCorrect: 0,
|
||||
isKnown: false,
|
||||
priorityPoints: 5,
|
||||
lastAttemptIndex: 0,
|
||||
totalCorrectAttempts: 1,
|
||||
totalAttempts: 4,
|
||||
),
|
||||
// Question 20 - Progress
|
||||
Question(
|
||||
id: 'gk_20',
|
||||
prompt: 'Who invented the telephone?',
|
||||
answers: ['Thomas Edison', 'Alexander Graham Bell', 'Nikola Tesla', 'Guglielmo Marconi'],
|
||||
correctAnswerIndices: [1],
|
||||
consecutiveCorrect: 1,
|
||||
isKnown: false,
|
||||
priorityPoints: 0,
|
||||
lastAttemptIndex: 3,
|
||||
totalCorrectAttempts: 2,
|
||||
totalAttempts: 4,
|
||||
),
|
||||
];
|
||||
|
||||
return Deck(
|
||||
|
||||
Reference in New Issue
Block a user