Answer:
Mass = 3.37 Kg
Explanation:
<u>Given the following data;</u>
Force = 50.5N
Acceleration = 15m/s²
To find the mass of the golf ball;
Force is given by the multiplication of mass and acceleration.
Mathematically, the formula for force is;
Where;
- F represents force measured in Newton.
- m represents the mass of an object measured in kilograms.
- a represents acceleration measured in meter per seconds square.
Making mass (m) the subject of formula, we have;
Substituting into the equation;

<em>Mass = 3.37 Kg</em>
That code, if it even compiles, won't produce those values with that call.
Explanation:
Question 1:
Ans: index
Index is a unique position to identify a particular value in an array.
Question 2:
Ans: Element
Element is the individual value present in the array. An array is used to store one or more element.
Question 3:
Ans: String
We can find from the question that the value is enclosed within "" (double quotes). So, the value added to the array is string. Any value that is enclosed within double quotes are termed as string.
Question 4:
Indexes are always int. Array index are never float. This is because, it represent the position.
Question 5:
The output will be 3. The reason is there are 3 values appended to the array "stuff" in the given piece of program.
Question 6:
The given code is an example of initializer list. Price is a list variable where the values are initialized.