Write an Algorithm to display the cut off mark for Engineering counselling. Input 3 subjects mark out of 100 (Physics, Chemistry, and Maths). Calculate the cut off as follows: 2M Sci = (phy+che)/2 Cutoff = Math+ Sci
Answers
Answer:
State - Who is eligible to apply for Anna University Counseling?
Nativity - Applicant should be a citizen of India but not belonging to Tamil Nadu
Minimum Qualification - As prescribed for Tamil Nadu Candidates
Minimum Mark rules - Marks prescribed for Tamil Nadu candidates under GENERAL CATEGORY
Can I authorize someone else to attend the counseling?
Due to unforeseen and unavoidable reasons, if a candidate is unable to attend the
Answer:
Here is an algorithm to display the cut off mark for Engineering counselling:
# Algorithm to display the cut off mark for Engineering counselling
# Step 1: Start
# Step 2: Input the marks for Physics, Chemistry, and Maths (out of 100)
physics = int(input("Enter the marks for Physics: "))
chemistry = int(input("Enter the marks for Chemistry: "))
maths = int(input("Enter the marks for Maths: "))
# Step 3: Calculate the Science mark by adding the marks for Physics and Chemistry and dividing the result by 2
sci = (physics + chemistry) / 2
# Step 4: Calculate the cut off mark by adding the Science mark to the Maths mark
cutoff = sci + maths
# Step 5: Print the cut off mark
print("Cut off mark: ", cutoff)
# Step 6: End
Explanation:
Start
Input the marks for Physics, Chemistry, and Maths (out of 100)
Calculate the Science mark by adding the marks for Physics and Chemistry and dividing the result by 2
Calculate the cut off mark by adding the Science mark to the Maths mark
Print the cut off mark
End
It's important to note that the cut off mark calculation algorithm is based on the given formula, if the formula is different the algorithm should be changed accordingly.
More question and answers:
https://brainly.in/question/5672747
https://brainly.in/question/21793582
#SPJ3