-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds first set of the new comprehension question types
- Loading branch information
1 parent
c95e5f4
commit 8739fec
Showing
1 changed file
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
// Future Question set 5 (Comprehension of 1 ) | ||
import 'package:pohnpeian_language_app/models/option.dart'; | ||
import 'package:pohnpeian_language_app/models/questions.dart'; | ||
|
||
|
||
List<Question> getQuestions() { | ||
List<Question> list = []; | ||
|
||
|
||
list.add(Question( | ||
text: 'Which of the following is "Kalahngan" ?', | ||
options: [ | ||
Option(code: 'A', text: 'Please', isCorrect: false), | ||
Option(code: 'B', text: 'Thank you (formal)', isCorrect: true), | ||
Option(code: 'C', text: 'Help', isCorrect: false), | ||
Option(code: 'D', text: 'Leave', isCorrect: false), | ||
], | ||
solution: 'The correct answer is "Thank You" ', | ||
)); | ||
list.add(Question( | ||
text: 'Which of the following is E-yung ?', | ||
options: [ | ||
Option(code: 'A', text: 'Dog', isCorrect: false), | ||
Option(code: 'B', text: 'Go', isCorrect: false), | ||
Option(code: 'C', text: 'Beach', isCorrect: false), | ||
Option(code: 'D', text: 'Thanks" (informal)', isCorrect: true), | ||
], | ||
solution: 'The correct answer is Thanks (informal)', | ||
)); | ||
list.add(Question( | ||
text: 'Which of the following is "Kaselehlie"?', | ||
options: [ | ||
Option(code: 'A', text: 'Kidi', isCorrect: false), | ||
Option(code: 'B', text: 'Malek', isCorrect: false), | ||
Option(code: 'C', text: 'Waterfall', isCorrect: false), | ||
Option(code: 'D', text: 'Hello', isCorrect: true), | ||
], | ||
solution: 'The correct answer is Hello', | ||
)); | ||
list.add(Question( | ||
text: 'Which of the following is "La iromw" ?', | ||
options: [ | ||
Option(code: 'A', text: "How are you?", isCorrect: true), | ||
Option(code: 'B', text: 'Where are you going?', isCorrect: false), | ||
Option(code: 'C', text: "How old are you?", isCorrect: false), | ||
Option(code: 'D', text: "How much?", isCorrect: false), | ||
], | ||
solution: 'The correct answer is "How are you?"', | ||
)); | ||
list.add(Question( | ||
text: 'Which of the following is Menseng mwahu?', | ||
options: [ | ||
Option(code: 'A', text: 'Good day', isCorrect: false), | ||
Option(code: 'B', text: 'Good night', isCorrect: false), | ||
Option(code: 'C', text: 'Good morning', isCorrect: true), | ||
Option(code: 'D', text: 'Good afternoon', isCorrect: false), | ||
], | ||
solution: 'The correct answer is "Good morning"', | ||
)); | ||
list.add(Question( | ||
text: 'Which of the following is Menseng mwahu?', | ||
options: [ | ||
Option(code: 'A', text: 'Good day', isCorrect: false), | ||
Option(code: 'B', text: 'Good night', isCorrect: false), | ||
Option(code: 'C', text: 'Good morning', isCorrect: true), | ||
Option(code: 'D', text: 'Good afternoon', isCorrect: false), | ||
], | ||
solution: 'The correct answer is "Good day"', | ||
)); | ||
list.add(Question( | ||
text: 'Which of the following is "Pwohng mwahu"?', | ||
options: [ | ||
Option(code: 'A', text: 'Good afternoon', isCorrect: false), | ||
Option(code: 'B', text: 'Good morning', isCorrect: false), | ||
Option(code: 'C', text: 'Good day', isCorrect: false), | ||
Option(code: 'D', text: 'Good night', isCorrect: true), | ||
], | ||
solution: 'The correct answer is "Good night "', | ||
)); | ||
return list; | ||
} | ||
//inspo Johannes Milke for answer choices styling |