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);
}
Answer:
The IoT offers new ways for businesses to create value, however the constant connectivity and data sharing also creates new opportunities for information to be compromised. Explore some of the more notable developments in the battle to combat cyber risks.
Explanation:
I hope this helps you. UwU. P.S. Plz mark me Brainlyest
Answer:
Does not permit source code changes.
Explanation:
As of the presented problem, the most probable answer and the most likely one, out of the options presented together with the problem, would be C. Save As.
Of the menu commands that are there, Save As would serve to be the command that you click when you want to make a copy of a currently open file and rename it. The difference between Save As and Save would be that Save would automatically just replace the old file with the new one, considering that there were changes that took over the file. Save As, on the other hand, would make the old file still available but would prompt the user to choose another file name for it and even presents the possibility of the file being saved in another file extension.
Answer:
D) All the mentioned
Explanation:
public: This access modifier allows access from all classes in the program
protected: Means only classes within the same package or sub-classes (inheritance) can access members of the class
No Modifier: Omiting the modifier sets a class to the default. Which implies only classes in the same package can access members of the class.
The given question refers to class members in the same package so any these three access modifiers can be used.