Reading Selection Controlled Algorithm (2 marks)
Consider the following pseudocode snippet: RECEIVE age FROM (INTEGER) KEYBOARD IF age >= 18 THEN SEND ‘You are eligible to vote.’ TO DISPLAY ELSE SEND ‘You are not eligible to vote yet.’ TO DISPLAY END IF (a) Identify the type of selection control structure used in this pseudocode. (b) What will be displayed if the […]
Reading Selection Controlled Algorithm (2 marks) Read More »

