this pseudocode outputs an account balance after adding annual simple interest at the end of five…

this pseudocode outputs an account balance after adding annual simple interest at the end of five years.\namount = 0\ninterest = 0\noutput \enter initial amount.\\nstore user input as amount\noutput \enter the simple interest rate as a percentage.\\nstore user input as interest\nfinalamount = amount+(amount * interest/100 * 5)\noutput \the final amount at the end of 5 years is \, finalamount, \.\\nhow many different variables are in these lines of pseudocode?\n2\n3\n4\n7
Answer
Explanation:
Step1: Identify variables
The variables are amount, interest, finalAmount.
Answer:
3