I havent studied C# for about 2 yrs and was recently given this simple problem but I'm a little lost on how to start solving this any help would be great
Write a program to grade a set of true/false tests. There are 15 true/false questions. True is represented by T, and false is represented by F. The key to the quiz and the student responses is on a file called “quiz.dat, which you create. The first line of the file is the key, each subsequent line is comprised of a student’s responses immediately followed by the student’s name. For each student write out the name followed by the number answered correctly and the number missed. You do not know how many student records are in the file. Use stream failure to terminate processing.
Input
The data as describe in the above problem statement. Create a data file that contains information for at least 10 students. Below are the first three lines of the input file. Remember, you do not know how many student records are in the file. Your program should be able to handle a data file of 5 or 500 lines without any code changes.
FTFTFTTTFFFTFFT
TFFTFTTFTFFTFFTJoe Jones
FTFTFTTFFFTFFFTJanet Jerome
Output
Print to the screen, each student’s name followed by the number of correct answers and the number of incorrect answers.