View on GitHub

TanayRayavarapu

Home Siuuuu Project Study Plan Data Structures Project Notes Github Actions Create Task

Create Task

Replit

Write Up

Runtime Video

Must Include:

  1. One list (or other collection type)
  2. One procedure
  3. Algorithm that includes sequencing, selection, and iteration
  4. Calls to student developed procedure
  5. User Input
  6. Instructions for output

Ideas

  1. Moving Robot
  2. Anagrams game
  3. Tic Tac Toe
  4. Jeopardy Game

    Final Idea: Jeopardy Game

    We will create a jeopardy game consisting of a score and a bunch of true or false questions. Certain true or false questions will be worth more points than others. There will be a button that causes the question to appear, which the user then answers - if the user is correct their score will be added, and if they are wrong it is subtracted. Screen Shot 2022-02-26 at 3 59 40 PM

Screen Shot 2022-02-26 at 4 00 34 PM

How it meets requirements:

  1. List - there is a list of variables which represent the questions. image

  2. There is a procedure to determine the score and if the question was answered correctly. It checks the value of the input, then goes through the procedure to see if it adds to the score or subtracts from it. Screen Shot 2022-02-26 at 3 51 13 PM

  3. The algorithm includes sequencing because you go through if then statements to see if the answer is correct. There is selection as the score is only added to if a certain answer is inputted. In addition, there is iteration through the array of questions in order to display the questions. image image image

  4. The student developed procedure is called to upon pressing the submit answer button. image

  5. There is input as the user types in the answer that they believe to be true. image

  6. The output comes in the form of the score, as based on the user input this output will be produced. image Screen Shot 2022-02-26 at 3 55 26 PM Screen Shot 2022-02-26 at 3 55 36 PM