*Please Write in Visual Basic** Design a program to allow a student to access cu
ID: 3773873 • Letter: #
Question
*Please Write in Visual Basic**
Design a program to allow a student to access current grades and/or create a "What-if" situation on a continuing basis to understand where they are at any given point in the semester. You will need to calculate multiple grades for exams, quizzes and assignments. Single grades will be calculated for attendance and a final semester project. 1. Record grades with the following attributes:
a. First name, middle initial and last name
b. SS # (can be fabricated)
c. 2 exams
d. 4 quizzes
e. 6 assignments
f. A final project
g. Attendance
h. Numeric grade
Convert numeric grade to alphabetic grade (A, B, etc).
Alphabetic grade Calculate Final Grade (numeric portion) using the following scale:
a. Assignments 20 %
b. 2 Exams 30 %
c. Semester Project 25 %
d. Attendance 10 % (19 classes = 100 % attendance)
e. 4 Quizzes 15 %
f. Total 100 %
Explanation / Answer
#include #include #include #include #include using namespace std; using std::cin; using std::cout; using std::endl; int main (int argc, char *argv[]){ int *grades; if(argc > 1){ grades = new int[atoi(argv[1])]; for(int i=0; i grades[i]; coutRelated Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.