static string[] Questions = new string[] {
"What are the 3 main differences in the plant vs. the animal cell? ALPHABETICAL ORDER AND LOWERCASE! \nformat: answer, answer2, answer3 \nhint: use the word. 'larger,' not 'a large.'\n ____ ____, ____________, _____ _______.",
"cell wall, chloroplasts, larger vacuole.",
"What is the Chloroplasts' job? type 1,2, or 3 as your answer.\n1. The chloroplasts turn oxygen, water, and light through a process called photosenthesis to create carbohydrates. \n 2. The chloroplasts turn sugar and oxygen and create ATP for the cell. \n3. The chloroplasts hold materials for the cell.",
public static void Main(string[] args)
Console.WriteLine("Enter \"test\" to begin the test or \"key\" to use the cell key");
switch(Console.ReadLine()){
public static void Key(){
public static bool Quiz(){
bool GotQuestionsRight = true;
while (question<=Questions.Length-2) {
Console.WriteLine(Questions[question]);
if(Console.ReadLine()!=Questions[question]){
Console.WriteLine("wrong");
return GotQuestionsRight;
public static void CompleteQuiz(){
Console.WriteLine("Congratulations. You have completed the quiz!");