Answer:
function sum(number) {
if (number == 1) {
return 1;
}
return number + sum(number -1);
}
Explanation:
This is a recursive function, it means that is a function that calls itself for example: if you call the function with sum(5) the process is :
sum(5)
|______ 5 + sum(4)
|_______ 4 + sum(3)
|______ 3 + sum(2)
|_____2 + sum(1)
|_____ 1
the result is 1+2+3+4+5 = 15
Answer: D
Local news channels
Explanation:
Since Jack is trying to improve local service the local news would be the best fit to reach the maximum amount of people in his area.
<span>Type of communication where a company’s computers can monitor assembly lines and equipment to keep them running safely and efficiently is called machine to machine (M2M).</span>
2
6
4
I’m guessing but this is my guess