246 views
0 votes
0 votes
$1)$No of Pages $\times$ Page size= Virtual Address Space or Size

No of Pages $\times$ PTE size= Page Table Size

Then,  if we divide Virtual Address Space with No of Segments then what will we get?

__________________________________________________________________________-

$2)$ Is every Program is a software interrupt?

Please log in or register to answer this question.

Related questions

2 votes
2 votes
1 answer
2
junaid ahmad asked Nov 9, 2017
1,296 views
Is SYSTEM CALLS needed to setup the shared memory between two processes ? and what are these system calls and does this system calls have any security concern?
2 votes
2 votes
3 answers
3
Philosophical_Virus asked Dec 10, 2023
766 views
Int main (){fork();printf("a");fork();printf("b");return 0;}How many distinct outputs are possible of above code? And also give outputs
0 votes
0 votes
1 answer
4
Erwin Smith asked Apr 11, 2023
756 views
void main() { int n = 1; if(fork()==0) { n = n<<1; printf(“%d, “, n); n = n <<1; } if(fork()==0) n=n+700; printf(“%d, “,n); }Which of the following output is not ...