Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

I need help with these parameters in javadocs * Param string name of the country

ID: 3823046 • Letter: I

Question

I need help with these parameters in javadocs

* Param string name of the country * param area the area of the country * param population the population of the country * param bRate the birth rate of the country * param dRate the death rate of the country * param ferRate the rate of fertility * param ruralPop the amount of population 1iving in rural areas * param telLines * param mobileSubs the number of cell phone users The @param tag for the parameter 'name' is missing or incomplete. The @param tag should be followed by the name of the parameter and then a description of the purpose of that parameter (i.e. the size of the list, the first name of the customer, etc.). There should be one @param tag for each parameter in the method or constructor. The @param tag for the parameter 'area' is missing or incomplete. The @param, tag should be followed by the name of the parameter and then a description of the purpose of that parameter (i.e. the size of the list, the first name of the customer, etc.). There should be one @param tag for each parameter in the method or constructor. The @param tag for the parameter 'population' is missing or incomplete. The @param tag should be followed by the name of the parameter and then a description of the purpose of that parameter (i.e. the size of the list, the first name of the customer, etc.). There should be one @param tag for each parameter in the method or constructor. The @param tag for the parameter 'bftate' Is missing or Incomplete. The @param tag should be followed by the name of the parameter and then a description of the purpose of that parameter (I.e. the size of the list, the first name of the customer, etc.). There should be one @param tag for each parameter In the method or constructor. The @param tag for the parameter 'dRate' Is missing or Incomplete. The @param tag should be followed by the name of the parameter and then a description of the purpose of that parameter (i.e. the size of the list, the first name of the customer, etc.). There should be one @param tag for each parameter In the method or constructor.

Explanation / Answer

You are missing '@' before param

/**
*
@param name name of the country
* @param area the area of the country
* @param population the population of the country
* @param bRate the birth rate of the country
* @param dRate the death rate of the country
* @param ferRate the rate of fertility
* @param ruralPop the amount of population living in rural areas
* @param teLines
* @param mobilesubs the number of cell phone users
*/
Country(String name, Double area, Double population, Double bRate, Double dRate, Double ferRate, Double ruralPop, double teLines, double mobilesubs)
{
}