Looking for Operating Systems Even Sem 24-25 test answers and solutions? Browse our comprehensive collection of verified answers for Operating Systems Even Sem 24-25 at moodle.coep.org.in.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Consider the following code. int main() { pid_t pid = fork(); if (pid > 0) { sleep(2); exit(0); } else if (pid == 0) { sleep(10); } else { // fork failed ; } exit(0);}Assuing that fork succeeds, and 10 seconds is a good enough delay to achieve what the program intends to do, and considering x6 environment which one of the following is correct:
Given that the number of bits reserved, out of total 32, for Page directory index are 8, page table index are 11
The size of the page in BYTES will be:
Compare paging with demand paging and select the correct statements.