Write a MATLAB program that reads the students information froma file called student.dat in which the student’s data are saved asshown in the format below (The file is provided in moodle)
(Name ID Quizzes Midterm Final)
Reem 100033125 30 25 35
Salem 100022125 25 25 35
Omar 100020314 27 24 23
- In your program, store the Student data in appropriate parallel1D arrays
- 1D Array for the names
- 1D Array for the IDs
- 1D Array for the Quizzes Grade
- 1D Array for the Midterm Grade
- 1D Array for the Final Grade
- Store the date in array of the structstudent then saves it in a binaryfile
The struct
OR
OR