Answer:
it gives gives the Operating System a way to securely manage memory.
Explanation:
the user never directly deals with the physical address but can access by its corresponding logical address.
hope this helps :)
D is the answer to the question
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:
Refer below.
Explanation:
Refer to the picture for the brief explanation of the code.
The answer would be python. the first was javascript and they changed to python.