CompTIA ITF+ FC0-U61 Practice Question
When writing a program to add two numbers input by a user and display the sum, which of the following pseudocode examples most accurately represents this operation?
BEGIN Get numbers and add END
firstNumber ? secondNumber = Output(sum)
Input firstNumber + Input secondNumber = Display Sum
BEGIN Input firstNumber Input secondNumber Set sum to firstNumber plus secondNumber Output sum END