You need to store a floating point number,called Tsquare,in the session scope. Which two code snippetsallow you to retrieve this value?()
- Afloat Tsquare = session.getFloatAttribute("Tsquare");
- Bfloat Tsquare = (Float) session.getAttribute("Tsquare");
- Cfloat Tsquare = (float) session.getNumericAttribute("Tsquare");
- Dfloat Tsquare = ((Float) session.getAttribute.("Tsquare")).floatValue();
- Efloat Tsquare = ((Float) session.getFloatAttribute.("Tsquare")).floatValue;