Шукаєте відповіді та рішення тестів для Operating Systems Even Sem 24-25? Перегляньте нашу велику колекцію перевірених відповідей для Operating Systems Even Sem 24-25 в moodle.coep.org.in.
Отримайте миттєвий доступ до точних відповідей та детальних пояснень для питань вашого курсу. Наша платформа, створена спільнотою, допомагає студентам досягати успіху!
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.