Add more questions to the Questions.kt file.
How?
Add a Question to questions arraylist in the Object QuestionsBank.
Format:
Question(
<String: Question to ask here>,
<Boolean: if the statement made in the question is true or false>,
<String: The actual fact of the question>
),
Example:
Question(
"Other than water, coffee is the world's most popular drink.",
true,
"Coffee is consumed by about one-third of Earth's population."
),
Note:
- Only one question should be added in a PR, if you need to add more questions, make a pr for each request
- Ensure no questions are repeated
- The pull request should also contain the source of truth for the question.
Add more questions to the
Questions.ktfile.How?
Add a
Questiontoquestionsarraylist in the ObjectQuestionsBank.Format:
Example:
Note: