Question:Write all syntax of the selection structure in psuedocode.
Answer 1. IF condition THEN instruction-T END IF 2. IF condition THEN instruction-T ELSE instruction-F END IF 3. IF condition-A THEN instruction-1 ELSE IF condition-B THEN instruction-2 ELSE IF condition-C THEN ... ELSE instruction-n END IF
+ Report
Write all syntax of the selection structure in psuedocode.