91.
Consider the array {1, 1, 1, 1, 1}. Select the wrong option?

93.
Under which of the following scenarios is page replacement algorithm required?

97.
Predict the output of the following code.
#include <stdlib.h> 
int main() 
{ 
     srand(0); 
     printf("%d\n", rand()%50); 
     return 0; 
}