Answer:
Enter the value of the score in the laboratory 1
L1 = digited value.
Enter the value of the score in laboratory 2
L2 = digited value.
Enter the value of the score in laboratory 3
L3 = digited value.
Enter the value of the test score 1
P1 = digited value.
Enter the value of the test score 2
P2 = digited value.
Laboratory Average = (L1 + L2 + L3) / 3
Print "Laboratory Average"
Test Average = (P1 + P2) / 2
Print "Test Average"
Course qualification = 0.55 * (Laboratory Average) + 0.45 * (Test Average)
print "Course qualification"
Step-by-step explanation: