9.2k views
5 votes
Write a pseudocode that will take marks of physics, chemistry and math as input, calculates the average and displays output.

1 Answer

4 votes

Answer:There are 3 programming/pseudocode constructs:

1. Sequence: It refers that instructions should be executed one after another.

2. Selection: This construct is used to make a decision in choosing an option from

many available options on the basis of a condition. So, if a condition is true then one

option would be chosen while if a condition is false then another option will be

chosen.

3. Repetition: This construct is used to repeat a block of code as per the given

Step-by-step explanation:

User McLosys Creative
by
4.3k points