State the Problem: Write a program that asks the user a series of short questions and keeps track of their correct and incorrect answers. Tools: if-else statements, variables, output statements, input statements Algorithim: variables for questions 1-5 variable for right questions variable for wrong questions output "What is the Capital of Indiana?" output "Who was the first US President?" output "When did the US gain independence?" output "What type of government is the US?" output "Who is the current US President?" if-else statements with right answers and right/wrong point value alert statement to display the final score Implementation: using JavaScript the algorithim was implemented asking for response on the five questions and giving one point for right and one for wrong Refinement: Everything ran smoothly, the only fix is to further specify what is being looked for in the input (i.e. specify full name for people)