Hi, I have the following questions about Project 2.
1. Based on the response in the post linked below which states that a process can only be loaded once, does this mean that after the fourth page (with page number 3) of a process has been loaded into...
Hi, I have the following questions about Project 2.
1. Based on the response in the post below stating that a process can only be loaded into RAM once, does this mean that after the fourth page (with page number 3) of a process has been loaded into ...
Hello,
I've seen a few posts already saying that if the input file tells us to bring the next page of process 0 to RAM, but all pages of process 0 are already in RAM, then we should update the last accessed time of the 0th page of process 0 to the new...
Hi, am I correct in assuming that the variables arg0, arg1, and so on can only appear in expressions?
In other words, this is ok
x - arg0 2
but this is not ok
arg0 - 2
function process arg1
do something
Thank you
Hi, I have the following questions about the project
1. Can we assume that a function must always have at least one statement in its body so if a function has no body (i.e. no indented statements) we should report this as an error?
2. If there are mor...
In the Lecture 8 slides, it says that there is only ever a single process in the running state. Am I correct in saying that this is only the case when the computer has only one CPU with one core? Because if the CPU has multiple cores, then each core ...