Write the algorithm, draw the flowchart, write and execute the Dart code for the following problem.
A student’s Midterm grade is 60 and the Final Grade is 80. The weight of Midterm and Final exams are % 40 and % 60 respectively.
Find the semester grade for this student.
start
enter the obtained markes of the student in mid term, A,B
mid term grede mid_term1=40*A/100
mid_term_2=60*B/100
final_grade=mid_term_1+mid_term_2
end
Comments
Leave a comment