Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

PLEASE DO NOT WRITE CODE WITH #include I NEED CODE REPLACE WITH VECTOR INSTEAD OF ARRAYS BUT DO NOT WANT ITERATOR CODE PLEASE Rewrite Homework

PLEASE DO NOT WRITE CODE WITH #include I NEED CODE REPLACE WITH VECTOR INSTEAD OF ARRAYS BUT DO NOT WANT ITERATOR CODE PLEASE

Rewrite Homework 7a, assuming that you have no idea what the size of the CorrectAnswer file is. Since you dont know how big the file is (i.e. how many multiple choice questions there were to grade), then a better choice of sequence containers might be the vector instead of the array. Use the same files, CorrectAnswers.txt, and StudentAnswers.txt, as before but this time determine the number of questions to grade from the size of the Vector that you make when you load all CorrectAnswers.txt into the CorrectAnswer Vector. You will then want to check to be sure that the StudentAnswers.txt file contains the same number of answers as the CorrectAnswers file, when you load those into a second Vector holding StudentAnswers. Below are the requirements for this program.

The output should look pretty much the same as that in Homework 7A.

Name your program: YourName-HwrkVII.cpp .

A list of the questions (by number) missed by the Student, showing the correct answer, and the incorrect answer provided by the student for each missed question.

The total number of questions missed.

The percentage of questions answered correctly.

Make sure your name is displayed along with your data.

Also, always be sure that your name appears as a comment at the top of your program.

Your program should test to be sure that there are the same number of answers given in the StudentAnswers.txt file as there are Questions in the CorrectAnswers.txt file. o If there are not, then the program should stop, displaying on the screen that the StudentAnswers.txt file does not have the same number of answers as there are questions. You can use a cin.get(); to hold the error display on the screen.

Be sure to use Vectors, not Arrays, to obtain your result. Do not make the assumption that the CorrectAnswers.txt file and the StudentAnswers.txt file have only 20 questions. They could have any number.

Below is a re-statement of Homework07A. One of your professors has asked you to write a program to grade the final , which consist of only multiple-choice questions. Each question has one of four possible answers: A, B, C, or D. The file CorrectAnswers.txt contains the correct answers for all of the questions, with each answer written on a separate line. The first line contains the answer to the first question, the second line contains the answer to the second question, and so forth.

Write a program that reads the contents of the CorrectAnswers.txt file into a char array, and then reads the contents of another file, containing a students answers, called StudentAnswers.txt, into a second char array. The program should determine the number of questions that the student missed and then display the following:

A list of the questions (by number) missed by the Student, showing the correct answer, and the incorrect answer provided by the student for each missed question.

The total number of questions missed.

The percentage of questions answered correctly.

This is the original program:

#include #include using namespace std; int main() { char answer_array[20]; int i=0; char student_answer_array[20]; ifstream infile("CorrectAnswers.txt"); ifstream infile1("StudentAnswers.txt"); if(!infile) { cout <<"Unable to open CorrectAnswers.txt. so Exiting from program " << endl; return 0; } if(!infile1) { cout <<"Unable to open StudentAnswers.txt. so Exiting from program " << endl; return 0; } while(!infile.eof()) { infile >> answer_array[i++]; } infile.close(); i=0; while(!infile1.eof()) { infile1 >> student_answer_array[i++]; } infile1.close(); int missed_questions=0; for(i=0; i<20; i++) { if(answer_array[i]!=student_answer_array[i]) { cout <<"You got wrong answer for question " << (i+1) << endl; cout << "Correct answer is " << answer_array[i] << endl; cout << "Your answer is " << student_answer_array[i] << endl; missed_questions++; } } cout <<"The total number of questions missed is " << missed_questions << endl; double percentage = static_cast (20-missed_questions)*100/20; cout <<"The percentage of questions answered correctly " << percentage << endl; if(percentage>70) cout <<"Student passed the final " << endl; else cout <<"Student failed the final " << endl; return 0; }

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

Database Design And Implementation

Authors: Edward Sciore

2nd Edition

3030338355, 978-3030338350

More Books

Students also viewed these Databases questions

Question

=+Are they specific or general in nature?

Answered: 1 week ago

Question

=+ What is the nature of the contracts or agreements with unions?

Answered: 1 week ago

Question

=+What is the procedure for labor relations in the workplace?

Answered: 1 week ago