subject
Computers and Technology, 11.06.2020 18:57 Deascry

There are two parts to the programming assignment. 1. Design and create a Question class according to the class specifications below. The Question class will hold data for a trivia question.
2. Write a script (on a separate file) that simulates a simple trivia game for two players.
Specification for Question class: A Question object has a question or prompt and four possible answers, but only one of the answers is correct – so basically, we are simulating a multiple-choice question.
Attributes
A trivia question or prompt
Possible answer 1
Possible answer 2
Possible answer 3.
Possible answer 4
The number of the correct answer (either 1, 2, 3, or 4)
Note: you could also label the possible answers with letters (e. g.: a, b, c, and d). Then the correct answer would be a value such as a, b, c, or d.
Methods
__init__ method
Getter methods (accessors/inspectors)
Setter methods (mutators)
A method that returns a string with the prompt and the possible answers. This method will be used in a script to display the trivia questions to the players. Make sure to format the string accordingly.
Script
Your program will simulate a simple trivia game for two players who will take turns in answering questions. Each time a player gives the correct answer to a question, the player earns a point. After all the questions have been answered, the program should display the number of points earned by each player and who the winner is, or indicate that there is a tie if that is the case.
Use the Question class to create at least 10 trivia questions on the topic of your choice. The Question objects you create must be stored in a list. If you need inspiration to create trivia questions, you may want to take a look at this site that has fan quizzes for many subjects (books, movies, TV shows, sports, etc.):
NOTE: Please keep in mind that you are expected to write a good quality, well formatted program. That means: • User input must be validated and your program gracefully handle invalid inputs. • Repetitive code (code that appears in multiple places in the main script) should be written as a function. • Your program must use good style, including proper identifier names, useful comments, and proper use of indentation and whitespace. • You program should also have an appropriate user interface so that anyone one using the program knows what to do and what to expect.

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 11:30
Communication is the exchange of information. true false
Answers: 2
question
Computers and Technology, 22.06.2019 16:10
When copying and pasting text, the first step is move your cursor type the text select the copy command select the paste command
Answers: 2
question
Computers and Technology, 22.06.2019 18:00
Write a method named addall that could be placed inside the hashintset class. this method accepts another hashintset as a parameter and adds all elements from that set into the current set, if they are not already present. for example, if a set s1 contains [1, 2, 3] and another set s2 contains [1, 7, 3, 9], the call of s1.addall(s2); would change s1 to store [1, 2, 3, 7, 9] in some order. you are allowed to call methods on your set and/or the other set. do not modify the set passed in. this method should run in o(n) time where n is the number of elements in the parameter set passed in.
Answers: 2
question
Computers and Technology, 23.06.2019 12:00
Which of these is a benefit of using objects in a powerpoint presentation? a. collaborators can create the external files while you create and edit the slide show. b. you can easily change the theme and design of the presentation. c. you can have older data in the source file while having up-to-date data in the presentation. d. collaborators can easily share the presentation.
Answers: 2
You know the right answer?
There are two parts to the programming assignment. 1. Design and create a Question class according...
Questions
question
Mathematics, 22.08.2020 01:01
question
Mathematics, 22.08.2020 01:01
question
Chemistry, 22.08.2020 01:01
question
Mathematics, 22.08.2020 01:01
question
Chemistry, 22.08.2020 01:01
Questions on the website: 13722367