Asked by Anonymous
                A university has 3000 students.These students are divided in four categories
1.B Tech
2.M Tech
3.Ms
4.Phd
Draw a flowchart & algorithm to find percentage of the students in each category
            
        1.B Tech
2.M Tech
3.Ms
4.Phd
Draw a flowchart & algorithm to find percentage of the students in each category
Answers
                    Answered by
            Steve
            
    sum=0
for i = 1..4 {sum += cat[i]}
for i = 1..4 {pct[i] = cat[i]/sum * 100}
    
for i = 1..4 {sum += cat[i]}
for i = 1..4 {pct[i] = cat[i]/sum * 100}
                                                    There are no AI answers yet. The ability to request AI answers is coming soon!
                                            
                Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.