Explain how to read information from the applet parameters.
- The getParameter() method can be used within the init() method to access the parameter data.
- It takes the parameter name as an argument.
Example:public void init()
{
String val = getParameter("foreground-color");
}