All You need here is just write the pseudocode
this is from my note ( pseudocode steps):
pseudocode: set the accumulator variable (mysum) to zero
loop over the numbers 1 through10 using a for loop
update mysum by adding ? to it
then: print out (mysum)
Know what pseudocode is. Pseudocode is a step-by-step verbal outline of your code that you can gradually transcribe into programming language.
Many programmers use it to plan out the function of an algorithm before setting themselves to the more technical task of coding.
Pseudocode serves as an informal guide, a tool for thinking through program problems, and a communication device that can help you explain your ideas to other people.
this is the question:
1 An Interactive True/False Quiz - Required Assignment
Write an interactive true/false quiz. The program should ask the user three true/false questions about any topic you like. The user should be given n chances to take the quiz, where n is a number given by the user.
The program should keep track of how many questions the user answered correctly (for a single attempt) and should keep track of the attempt number. After each quiz attempt, the program will print out a score.
Your program must meet the following speci cations:
1. Get the number of attempts,n, from the user.
2. Ask three (nicely formatted) true/false questions and give feedback for each question.
3. Track the number of correct answers for each quiz attempt.
4. Track the attempt number.
5. Print out the score (i.e., number correct) for each attempt. Also include the attempt number.