(Choose 1 answer)
A bean with a property color is loaded using the following statement <jsp:useBean id="fruit" class="Fruit"/>
Which of the following statements may be used to print the value of color property of the bean?. Select the one correct answer.
A. <jsp:getColor bean="fruit"/>
B. <jsp:getProperty id="fruit" property="color"/>
C. <jsp:getProperty bean="fruit" property="color"/>
D. <jsp:getProperty name="fruit" property="color"/>
E. <jsp:getProperty class="Fruit" property="color"/>
39