2/3 and 3/5
2(5) = 10
3(3) =9
10 > 9
3/5 is less than 2/3
Multiply numerator of the first fraction and denominator of second fraction.
Hope that helps!!!
According to the constitution, it's 6 years.
Hello!
The answer to your question is:
4. myBall.pos.y = myBall.pos.y + 2
Explanation, if you’d like one:
1. is incorrect as “z” isn’t a direction in which the ball can move.
2. is incorrect as “x” would be moving the ball right.
3. is incorrect as there is no direction defined.
I hope that this helps you out!
Answer:
double average(double* scores, int size)
{ double sum = 0;
for (int i = 0; i < size; i++)
sum += scores[i];
return sum / size; }
Explanation:
Above is the function defined and its explanation is as follows:
double average(double* scores, int size)
- A variable average with data type double having two arguments scores(array of doubles having scores) and size(number of elements of array scores).
double sum = 0;
for (int i = 0; i < size; i++)
sum += scores[i];
- All the scores in the array are added into a variable named sum with data type double.
return sum / size;
- Return value will give the average of all the scores calculated by dividing sum of all the scores with size(total number) of scores.