Given a single client accessing a JSP that contains the following fragment, what will be resulting
output in the browser?
<%! final double interestRate = 3.4; %>
Your current balance is: <% int balance = 1000; %> <br>
The interest rate is: <%= interestRate %>
A.
Your current balance is: 1000
The interest rate is: interestRate
B.
Your current balance is:
The interest rate is: interestRate
C.
Your current balance is:
The interest rate is: 3.4
D.
Your current balance is: 1000
The interest rate is: 3.4