akosiraff

Download QuestionBank_Phase4 CPP

Sep 20th, 2015
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1.  
  2. Download: http://solutionzip.com/downloads/questionbank_phase4-cpp/
  3. Part 1: Begin with the running program from your Phase 4 Individual Project where the examination question class hierarchy was fully implemented in a menu-driven program. An exam class was developed to load the exam from a file and display each question
  4. to the screen. Part 2: Modify the program from part 1 to change the menu to the following: 1. Load an exam 2. Take an exam 3. Show exam results 4. Quit Choice 1: No functionality change. Load the exam based upon the user’s prompt for an exam file. Choice 2:
  5. The program should display a single question at a time and prompt the user for an answer. Based upon the answer, it should track the score based upon a successful answer. Once a user answers the question, it should also display the correct answer with an appropriate
  6. message (e.g., “Good job” or “Better luck next time”) Upon completion of the exam, the program should return the user to the menu. Choice 3: The program should display the total points available and the total points scored during that exam. A percentage score
  7. should also be displayed. (Optional: if you choose to track which problems were missed, you could display that information for the user.) Choice 4: No change to this functionality from the Phase 4 IP. You should consider creating an additional class Student
  8. that will track student’s score through methods such as addPointsPossible, addPointsScored, getPointsPossible, and getPointsScored. You should also enhance your Exam class to include methods getPointValue and getAnswer. You may also want to add a method to
  9. only display one question at a time, such as displayQuestion.
  10. Download: http://solutionzip.com/downloads/questionbank_phase4-cpp/
Add Comment
Please, Sign In to add comment