start read Customer_Order_Record if Quantity > 100 then Discount = 20 else if Quantity > 12 then Discount = 10 endif endif Total = Price* Quantity Total = Total - (Discount* Total)/100 Print Total Stop >> Example 2 Start Read Student_Marks_File Pass = 0 Fail = 0 Total = 0 X = 0 while (End Of Student_Marks_File) do Total = Total + Subject_Marks if (Subject_Marks > 40) then Print "Student passed in" Subject else
Print "Student failed in" Subject endif X = X +1 Read Next Record endwhile Average = Total/X Print "Average Marks of" Student_Name "are" Average Stop From the above examples of pseudocode containing control structures, analyze the logic implemented in the pseudocode.
I need help with this please
what is the problem , m unable to get which kind of help u need ?
I need help to understand the logic behind each set of pseudocode
so what do you need to know
How would you implement the logic used for the above examples?
There is 2 examples and I usually have a tendency to over think the question asked
Analyze Pseudocode The following are a few examples of pseudocode: >> Example 1 start read Customer_Order_Record if Quantity > 100 then Discount = 20 else if Quantity > 12 then Discount = 10 endif endif Total = Price* Quantity Total = Total - (Discount* Total)/100 Print Total Stop >> Example 2 Start Read Student_Marks_File Pass = 0 Fail = 0 Total = 0 X = 0 while (End Of Student_Marks_File) do Total = Total + Subject_Marks if (Subject_Marks > 40) then Print "Student passed in" Subject else Print "Student failed in" Subject endif X = X +1 Read Next Record endwhile Average = Total/X Print "Average Marks of" Student_Name "are" Average Stop From the above examples of pseudocode containing control structures, analyze the logic implemented in the pseudocode. Answer Preview ...to the "Total" variable (overwriting its existing value). Continuing from the previous example, "Total" would be 100 - 20 = 80. 6. Finally, total is printed by the "Print Total" command. The above explanation is rather too detailed for such a...
dose that help any
It does if it could be viewed entirely sorry
Would it help if it was broken down?
Join our real-time social learning platform and learn together with your friends!