Skip to content

Instantly share code, notes, and snippets.

@niven01
Created October 8, 2023 15:31
Show Gist options
  • Save niven01/cb92acf7c837d2b24deadb9f97d17a6e to your computer and use it in GitHub Desktop.
Save niven01/cb92acf7c837d2b24deadb9f97d17a6e to your computer and use it in GitHub Desktop.
Science Biology
# Define the quiz questions and choices with numbers
$quizQuestions = @(
@{
QuestionNumber = 1
Question = "What is the powerhouse of the cell?"
Choices = "A. Nucleus", "B. Cell membrane", "C. Mitochondria", "D. Chloroplasts"
CorrectAnswer = "C"
EvidenceLink = "https://en.wikipedia.org/wiki/Mitochondrion"
},
@{
QuestionNumber = 2
Question = "What process converts sunlight into glucose in plants?"
Choices = "A. Respiration", "B. Fermentation", "C. Photosynthesis", "D. Digestion"
CorrectAnswer = "C"
EvidenceLink = "https://en.wikipedia.org/wiki/Photosynthesis"
},
@{
QuestionNumber = 3
Question = "Which of the following is a genetic material found in cells?"
Choices = "A. RNA", "B. ATP", "C. DNA", "D. Glucose"
CorrectAnswer = "C"
EvidenceLink = "https://en.wikipedia.org/wiki/DNA"
},
@{
QuestionNumber = 4
Question = "What is the role of the cell membrane?"
Choices = "A. Energy production", "B. Control substances in and out", "C. Storage of genetic material", "D. Photosynthesis"
CorrectAnswer = "B"
EvidenceLink = "https://en.wikipedia.org/wiki/Cell_membrane"
},
@{
QuestionNumber = 5
Question = "In aerobic respiration, what is the final product?"
Choices = "A. Carbon dioxide", "B. Lactic acid", "C. Oxygen", "D. ATP"
CorrectAnswer = "D"
EvidenceLink = "https://en.wikipedia.org/wiki/Adenosine_triphosphate"
},
@{
QuestionNumber = 6
Question = "Who proposed the theory of evolution by natural selection?"
Choices = "A. Isaac Newton", "B. Albert Einstein", "C. Charles Darwin", "D. Gregor Mendel"
CorrectAnswer = "C"
EvidenceLink = "https://en.wikipedia.org/wiki/Charles_Darwin"
},
@{
QuestionNumber = 7
Question = "What is an adaptation in biology?"
Choices = "A. A plant's ability to produce fruit", "B. Traits that increase an organism's chances of survival", "C. The process of photosynthesis", "D. A type of genetic mutation"
CorrectAnswer = "B"
EvidenceLink = "https://en.wikipedia.org/wiki/Adaptation"
},
@{
QuestionNumber = 8
Question = "What is an ecosystem?"
Choices = "A. A community of people", "B. A group of cells", "C. A community of organisms interacting with their environment", "D. A laboratory experiment"
CorrectAnswer = "C"
EvidenceLink = "https://en.wikipedia.org/wiki/Ecosystem"
},
@{
QuestionNumber = 9
Question = "Which of the following is a decomposer in an ecosystem?"
Choices = "A. Rabbit", "B. Owl", "C. Mushroom", "D. Deer"
CorrectAnswer = "C"
EvidenceLink = "https://en.wikipedia.org/wiki/Saprotrophic_nutrition"
},
@{
QuestionNumber = 10
Question = "What is the process of converting waste materials into reusable materials called?"
Choices = "A. Recycling", "B. Incineration", "C. Pollution", "D. Photosynthesis"
CorrectAnswer = "A"
EvidenceLink = "https://en.wikipedia.org/wiki/Recycling"
},
@{
QuestionNumber = 11
Question = "What gas is primarily responsible for global warming?"
Choices = "A. Oxygen", "B. Carbon dioxide", "C. Nitrogen", "D. Hydrogen"
CorrectAnswer = "B"
EvidenceLink = "https://en.wikipedia.org/wiki/Carbon_dioxide"
},
@{
QuestionNumber = 12
Question = "Which system in the human body controls body functions through electrical impulses?"
Choices = "A. Respiratory system", "B. Digestive system", "C. Circulatory system", "D. Nervous system"
CorrectAnswer = "D"
EvidenceLink = "https://en.wikipedia.org/wiki/Nervous_system"
},
@{
QuestionNumber = 13
Question = "What is homeostasis in biology?"
Choices = "A. The process of reproduction", "B. The body's ability to maintain a stable internal environment", "C. The breakdown of food", "D. The process of natural selection"
CorrectAnswer = "B"
EvidenceLink = "https://en.wikipedia.org/wiki/Homeostasis"
},
@{
QuestionNumber = 14
Question = "Which of the following is NOT an example of a disease caused by a pathogen?"
Choices = "A. Influenza", "B. Tuberculosis", "C. Allergies", "D. Malaria"
CorrectAnswer = "C"
EvidenceLink = "https://en.wikipedia.org/wiki/Pathogen"
},
@{
QuestionNumber = 15
Question = "What is the purpose of vaccination?"
Choices = "A. To cure diseases", "B. To prevent the spread of diseases", "C. To treat allergies", "D. To promote sleep"
CorrectAnswer = "B"
EvidenceLink = "https://en.wikipedia.org/wiki/Vaccination"
},
@{
QuestionNumber = 16
Question = "What are antibiotics used to treat primarily?"
Choices = "A. Viral infections", "B. Bacterial infections", "C. Fungal infections", "D. Allergies"
CorrectAnswer = "B"
EvidenceLink = "https://en.wikipedia.org/wiki/Antibiotics"
},
@{
QuestionNumber = 17
Question = "Which disease attacks the immune system and can lead to AIDS?"
Choices = "A. Tuberculosis", "B. Malaria", "C. HIV", "D. Influenza"
CorrectAnswer = "C"
EvidenceLink = "https://en.wikipedia.org/wiki/HIV/AIDS"
},
@{
QuestionNumber = 18
Question = "What is the term for the variety of life in an ecosystem?"
Choices = "A. Uniformity", "B. Biodiversity", "C. Monotony", "D. Simplicity"
CorrectAnswer = "B"
EvidenceLink = "https://en.wikipedia.org/wiki/Biodiversity"
},
@{
QuestionNumber = 19
Question = "What is a common source of air pollution in urban areas?"
Choices = "A. Solar energy", "B. Wind turbines", "C. Fossil fuel combustion", "D. Plant photosynthesis"
CorrectAnswer = "C"
EvidenceLink = "https://en.wikipedia.org/wiki/Air_pollution"
},
@{
QuestionNumber
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment