what happens in the process represented by the pseudocode below? get(answer) if(answer is yes) then(multiply…

what happens in the process represented by the pseudocode below? get(answer) if(answer is yes) then(multiply 4 and 9) if(answer is no) then(do nothing) o the computer multiplies 4 and 9 if the answer is yes. o the computer multiplies 4 and 9 if the answer is no. o the computer always multiplies 4 and 9. o the computer always does nothing.

what happens in the process represented by the pseudocode below? get(answer) if(answer is yes) then(multiply 4 and 9) if(answer is no) then(do nothing) o the computer multiplies 4 and 9 if the answer is yes. o the computer multiplies 4 and 9 if the answer is no. o the computer always multiplies 4 and 9. o the computer always does nothing.

Answer

Brief Explanations:

The pseudocode first gets an input 'answer'. If 'answer' is "yes", it multiplies 4 and 9. If 'answer' is "no", it does nothing.

Answer:

The computer multiplies 4 and 9 if the answer is yes.