Recent questions tagged memory-management

0 votes
1 answer
301
0 votes
0 answers
302
queue->array = (int*) malloc(queue->capacity *sizeof(int));What is queue->capacity * doing here?
0 votes
1 answer
303
Difference between static memory allocation and dynamic memory allocation.(Need concept clearing explanation)
1 votes
1 answer
305
This question was asked in one of the assignments: http://www.cs.utexas.edu/~lorenzo/corsi/cs372/06F/hw/3sol.html But I'm not clear with the explanation. Can someone plea...
2 votes
1 answer
306
Consider a logical address space of eight pages of 1,024 words each, mapped on to a physical memory of 32 frames.a)How many bits are in logical address?b)How many bits ar...
2 votes
0 answers
308
2 votes
2 answers
313
0 votes
2 answers
315
A 32-bit machine has a page/frame size of 1 KB.(i) What is the size of the complete first-level (primary) page table for a process?(ii) If page tables are also stored usi...
1 votes
0 answers
318
There are 5 processes having an average size of 100k. Average size of hole is 60k. Percentage of memory wasted in holes?763723None
1 votes
1 answer
320
A disc drive has a average seek time of 10ms, 32 sectors on each track and 512 bytes per sector.If the average time to read 8kbytes of continuously stored data is 20ms, w...
1 votes
1 answer
322
I am little bit unclear about Linear,Logical and Physical Address. Can anybody tell which is accessed when and how?or any valid documentation to read plz
2 votes
2 answers
323
Suppose that cache access time is 7 ns, main memory access time is 50 ns and disk space access time is 1200 ns. If the hit rate of cache is 60% and of main memory hier...
4 votes
1 answer
324
Does the dynamically linked files are slower in execution as compared to static linked files?
1 votes
2 answers
326
1 votes
0 answers
327
In an multiprogramming fixed partitioning the number of partitions are fixed or size of partitions are fixed please explain
1 votes
1 answer
328
Fixed partitioning for contiguous memory allocation suffers from external fragmentation or not please explain with example
0 votes
2 answers
329
How to understand that no. of entries in inverted page table is equal to no of frames in physical address space?