Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In Python There are two parts to the programming assignment. 1. Design and create a Question class according to the class specifications below. The Question

In Python

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 Each time a player gives the correct answer to a question, the player earns a point. After all The results 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. Question objects you create must be stored in a list.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Microsoft Outlook 2023

Authors: James Holler

1st Edition

B0BP9P1VWJ, 979-8367217322

Students also viewed these Databases questions

Question

Identify three ways to manage an intergenerational workforce.

Answered: 1 week ago

Question

Prepare a Porters Five Forces analysis.

Answered: 1 week ago

Question

Analyze the impact of mergers and acquisitions on employees.

Answered: 1 week ago