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.