Answer:
in order to use correct codes, ensure the variables in loops are in brackets
Smart Watches are taking over normal watches. They are getting WAYYY cheaper. There is one for about $14
Answer:
They are termed as ethics. But remember different industries have a different set of ethics or rules that they expect their employees to follow. However, some that go well with all are common to all. And they are the standard ethics that are followed by all the industries. Failing to these is never expected.
Explanation:
Please check the answer section.
One 4-GB DIMM. Dont really have a explanation for it just comes from previous experience
Language: JavaScript
Answer:
let num = [10,20,30];
average(num);
function average(num) {
let sum = 0;
for(let i in num) {
sum += num[i];
}
return console.log(sum/num.length);
}