Assignment 2: Quiz Night Game Engine The game engine loads questions and their answers from a file and asks the questions to the user who needs to provide the answer. The game can provide clues to the...

simple code needed


Assignment 2: Quiz Night Game Engine The game engine loads questions and their answers from a file and asks the questions to the user who needs to provide the answer. The game can provide clues to the user, with the amount of information provided depending on the level of difficulty. Details 1. The questions and answers are in a file. The file is provided as a command line argument to the application. 2. In the question and answer file each line has a question and its answer. The answers are always one word. 3. The question always ends in ‘?’ then there is a space and following that the answer. For example: What is the capital of France? Paris 4. The application takes a second command line argument, a number <10 that represents the difficulty level. the program should: · at the start · load the questions and answers from the file · print out the number of questions in the quiz · start asking questions · for each question, display a clue (if available, see below); the user has one attempt only, and the program is case insensitive (accepts both lower and upper case answers) · after each question display the number of questions asked and the number of correctly answered questions so far. example: score: 5/7 · at the end store the results in a file quiz_history.txt by appending to the file one line containing: · name of the quiz file · number of questions answered correctly · total number of questions · difficulty level questions and clues the following difficulty levels should be supported: 1. no clue is given and only a ‘?’ is shown. example: what is the capital of france? ? 2. a set of blank dashes separated by spaces is displayed, one for every letter in the answer. example: what is the capital of france? - - - - - 3. a the first and the last letters are shown. example: what is the capital of france? p - - - s 4. two random letters from the answer are shown in their correct position. example what is the capital of france? p - r - - 5. all letters are shown but in random order. example: what is the capital of france? r s i p a observations · you do not know in advance how many questions are in the file; it is recommended to use a dynamic data structure to store questions as they are read basic functionality marking 70% · processing command line parameters (5) · file name · difficulty level · reading questions from file · opening the file and reading from the file (5) · separating questions from answers (5) · storing a question and its answer (5) · storing all the questions in a list (10) · print out number of questions in the quiz (3) · display a question (3) · take in the user’s word and compare it with the question answer · reading word from the user(3) · case insensitive comparison(2) · display a clue based on the difficulty level: · level 1, 2, 3, 4(4 * 5 marks) · write the results to file (6) · keep track of the number of correctly answered questions (3) advanced marking (30%) · the questions are asked in random order (10) · display a clue based on the difficulty level 5 (10) · difficulty level 6. the type of clue is randomly selected from the 5 types listed above. (5) · store the status (correct/incorrect) of all the questions. when the quiz is complete the user is asked if they want to view the correct answers to the questions that were wrong. (5) that="" represents="" the="" difficulty="" level.="" the="" program="" should:="" ·="" at="" the="" start="" ·="" load="" the="" questions="" and="" answers="" from="" the="" file="" ·="" print="" out="" the="" number="" of="" questions="" in="" the="" quiz="" ·="" start="" asking="" questions="" ·="" for="" each="" question,="" display="" a="" clue="" (if="" available,="" see="" below);="" the="" user="" has="" one="" attempt="" only,="" and="" the="" program="" is="" case="" insensitive="" (accepts="" both="" lower="" and="" upper="" case="" answers)="" ·="" after="" each="" question="" display="" the="" number="" of="" questions="" asked="" and="" the="" number="" of="" correctly="" answered="" questions="" so="" far.="" example:="" score:="" 5/7="" ·="" at="" the="" end="" store="" the="" results="" in="" a="" file="" quiz_history.txt="" by="" appending="" to="" the="" file="" one="" line="" containing:="" ·="" name="" of="" the="" quiz="" file="" ·="" number="" of="" questions="" answered="" correctly="" ·="" total="" number="" of="" questions="" ·="" difficulty="" level="" questions="" and="" clues="" the="" following="" difficulty="" levels="" should="" be="" supported:="" 1.="" no="" clue="" is="" given="" and="" only="" a="" ‘?’="" is="" shown.="" example:="" what="" is="" the="" capital="" of="" france?="" 2.="" a="" set="" of="" blank="" dashes="" separated="" by="" spaces="" is="" displayed,="" one="" for="" every="" letter="" in="" the="" answer.="" example:="" what="" is="" the="" capital="" of="" france?="" -="" -="" -="" -="" -="" 3.="" a="" the="" first="" and="" the="" last="" letters="" are="" shown.="" example:="" what="" is="" the="" capital="" of="" france?="" p="" -="" -="" -="" s="" 4.="" two="" random="" letters="" from="" the="" answer="" are="" shown="" in="" their="" correct="" position.="" example="" what="" is="" the="" capital="" of="" france?="" p="" -="" r="" -="" -="" 5.="" all="" letters="" are="" shown="" but="" in="" random="" order.="" example:="" what="" is="" the="" capital="" of="" france?="" r="" s="" i="" p="" a="" observations="" ·="" you="" do="" not="" know="" in="" advance="" how="" many="" questions="" are="" in="" the="" file;="" it="" is="" recommended="" to="" use="" a="" dynamic="" data="" structure="" to="" store="" questions="" as="" they="" are="" read="" basic="" functionality="" marking="" 70%="" ·="" processing="" command="" line="" parameters="" (5)="" ·="" file="" name="" ·="" difficulty="" level="" ·="" reading="" questions="" from="" file="" ·="" opening="" the="" file="" and="" reading="" from="" the="" file="" (5)="" ·="" separating="" questions="" from="" answers="" (5)="" ·="" storing="" a="" question="" and="" its="" answer="" (5)="" ·="" storing="" all="" the="" questions="" in="" a="" list="" (10)="" ·="" print="" out="" number="" of="" questions="" in="" the="" quiz="" (3)="" ·="" display="" a="" question="" (3)="" ·="" take="" in="" the="" user’s="" word="" and="" compare="" it="" with="" the="" question="" answer="" ·="" reading="" word="" from="" the="" user="" (3)="" ·="" case="" insensitive="" comparison="" (2)="" ·="" display="" a="" clue="" based="" on="" the="" difficulty="" level:="" ·="" level="" 1,="" 2,="" 3,="" 4="" (4="" *="" 5="" marks)="" ·="" write="" the="" results="" to="" file="" (6)="" ·="" keep="" track="" of="" the="" number="" of="" correctly="" answered="" questions="" (3)="" advanced="" marking="" (30%)="" ·="" the="" questions="" are="" asked="" in="" random="" order="" (10)="" ·="" display="" a="" clue="" based="" on="" the="" difficulty="" level="" 5="" (10)="" ·="" difficulty="" level="" 6.="" the="" type="" of="" clue="" is="" randomly="" selected="" from="" the="" 5="" types="" listed="" above.="" (5)="" ·="" store="" the="" status="" (correct/incorrect)="" of="" all="" the="" questions.="" when="" the="" quiz="" is="" complete="" the="" user="" is="" asked="" if="" they="" want="" to="" view="" the="" correct="" answers="" to="" the="" questions="" that="" were="" wrong.="">
Apr 07, 2021
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here