Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

write a c program to grade an n-question multiple choice exam (for n between 5 a

ID: 3656047 • Letter: W

Question

write a c program to grade an n-question multiple choice exam (for n between 5 and 50) and print the student id number and the score as a percentage. Also provide a feed back anout the most frequently missed questions at the end. Your program will first ask the user to enter the number of questions (between 5 and 50) and the correct answers for the questions. Write a function to input the correct answers form the keyboard in to an array of characters. Then your program will ask the user to enter the students answer's. Write another function to enter the student's answers into another character array. Then write another function to compare the two arrays to figure out each student's score as percentage. You may print the student id number and the percentage at the end of this function. After all the students have been processed printout how many missed each question. This will be done in separate function.

Explanation / Answer

#include int main() { int i,j=0,k,n,a[100],b[100]; printf("enter reg no: "); scanf("%d",&k); b: printf("enter no. of qsns "); scanf("%d",&n); if(n