391 views
1 votes
1 votes
if you have 10 Frames and using LRU how many page fault will be there in both below:
 

for (int j = 0; j < 100; j++) for (int i = 0; i < 100; i++) A[i][j] = A[i][j] + A[j][i];

 

for (int i = 0; i < 100; i++) for (int j = 0; j < 100; j++) A[i][j] = A[i][j] + A[j][i];

Please log in or register to answer this question.

Related questions

3 votes
3 votes
1 answer
1
Sona Barman asked Jan 18, 2018
470 views
Self doubt:What is the rule or keyb point we should keep in mind while solving problems on LRU page replacement algorithm? Please explain with examples.
2 votes
2 votes
1 answer
3