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: