Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added quizContent details for 5 questions #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 56 additions & 7 deletions src/quiz/quizContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,63 @@
// |};

export const quizContent: $ReadOnlyArray<QuizQuestion> = [{
question: "This is the question. What is the answer?",
question: "How many people are experiencing homelessness in the city of Seattle?",
answers: [
"42",
"Febtober",
"African or European Swallow?"
"2,000",
"5,000",
"12,500",
"20,000"
],
extendedInfoParagraphs: [
"Put any extended information on the subject here"
"For the benefit of readers on the answer page"
"12,500",
"The homeless population in Seattle and King County continues to be the third largest in the country by numbers, outranked only by New York City and Los Angeles."
]
}];
}, {
question: "How many safe injection sites are there within Seattle city limits?",
answers: [
"0",
"1",
"4",
"10"
],
extendedInfoParagraphs: [
"0",
"There are no safe injection facilities in Seattle or in the US in general, despite a growing trend worldwide (120 locations in the world: Australia, Canada, Denmark, France, Germany, Luxembourg, the Netherlands, Norway, Spain and Switzerland)."
]
}, {
question: "How many needle exchange sites are there in Seattle?",
answers: [
"0",
"1",
"4",
"10"
],
extendedInfoParagraphs: [
"4",
"There are over 200 safe injection sites across the US, 4 of which are in the Seattle area. A recent study US study from Austin, TX showed that the proportion of people who shared syringes dropped from 74% to 22% after introducing a needle-share program. Studies have found that cities that have exchange programs have seen a decrease in HIV among people who inject drugs (PWID) by 6 percent a year. Cities that do not have these programs have seen an increase of HIV by 6 percent a year among PWID. - The Daily, UW"
]
}, {
question: "What percentage of all people living with AIDS acquired HIV infection directly or indirectly through injection drug use?",
answers: [
"5%",
"25%",
"40%",
"50%"
],
extendedInfoParagraphs: [
"25%",
"Best worldwide evidence from cohort and modeling studies suggests that SISs are associated with lower overdose mortality (88 fewer overdose deaths per 100 000 person-years [PYs]), 67% fewer ambulance calls for treating overdoses, and a decrease in HIV infections. Effects on hospitalizations are unknown."
]
}, {
question: "What percentage of individuals encountered in encampments have substance abuse disorders?",
answers: [
"65%",
"70%",
"80%",
"95%"
],
extendedInfoParagraphs: [
"80%",
"In Europe, more people using safe consumption spaces ultimately seek out treatment resources to address their disorders and are less likely to participate in risky behavior such as sharing syringes, reusing syringes, rushing injections, and injecting in public spaces..."
]
}];