what is the difference between x86 and i386 computer ?
x86 refers to a popular set of instructions most commonly used in processors from Intel, AMD, VIA, and others. It usually implies a binary compatibility with the... Read more »
x86 refers to a popular set of instructions most commonly used in processors from Intel, AMD, VIA, and others. It usually implies a binary compatibility with the... Read more »
Virtual memory is the memory taken form hard disk. Swap: When the programme excuting in the main memory is completly shifted to Virtual Memory for the execution.... Read more »
unix providing more securities than windows Read more »
Under preemptive scheduling, the highest priority task executes until it enters the waiting or dead states or a higher priority task comes into existence. Under... Read more »
When you expect your code will be accessed by different threads and these threads may change a particular data causing data corruption. Read more »
Synchronization is the mechanism that ensures that only one thread is accessed the resources at a time. Read more »
Thread contains ready, running, waiting and dead states. Read more »
COM is a specification(Standards). COM has two aspects 1) COM specifications provide a definition for what object is. 2) COM provides services or blue prints for... Read more »
The process of packaging and sending interface method parameters across thread or process boundaries. Read more »
A process is a collection of virtual memory space, code, data, and system resources. A thread is code that is to be serially executed within a process. A processor... Read more »
Mutex is a program object that allows multiple program threads to share the same resource, such as file access, but not simultaneously. When a program is started... Read more »
Processor : performs all the functions for a program in execution ie., ALU, MU, CU. Assembler : converts High level to Assembly Language or Low level language. Loader... Read more »
A real time process is a process that must respond to the events within a certain time period. A real time operating system is an operating system that can run real... Read more »
Switching the CPU to another process requires saving the state of the old process and loading the saved state for the new process. This task is known as a context... Read more »
Selects from among the processes in memory that are ready to execute, and allocates the CPU to one of them. CPU scheduling decisions may take place when a process:... Read more »