-
DOS style backslashes to UNIX style slashes
- Write a script to convert all DOS style backslashes to UNIX style slashes in a list of filesI am not sure if this question has been asked before. I am newbie to this I would appreciate you answer?
-
What is distributed Systems?
Distribute the computation among several physical processors.Loosely coupled system – each processor has its own local memory; processors communicate with one another through various communications lines, such as high-speed buses or telephone linesAdvantages of distributed systems:->Resources Sharing ->Computation speed up – load sharing ->Reliability->Communications
-
-
What resources are used when a thread created? How do they differ from those when a process is created?
When a thread is created the threads does not require any new resources to execute the thread shares the resources like memory of the process to which they belong to. The benefit of code sharing is that it allows an application to have several different threads of activity all within the same address space.Where as if a new process creation is very heavyweight because it always requires new address...
-
Define Demand Paging, Page fault interrupt, and Trashing?
Demand Paging: Demand paging is the paging policy that a page is not read into memory until it is requested, that is, until there is a page fault on the page. Page fault interrupt: A page fault interrupt occurs when a memory reference is made to a page that is not in memory.The present bit in the page table entry will be found to be off by the virtual memory hardware and it will signal an interrupt. Trashing:...
-
-
List of CPU Scheduling algorithms implemented in Windows Operating System
Hi As we all Know that the OS use various CPU Scheduling algorithm's. I would like to know what Algorithms are used in various OS(Specially in Windows OS) and the purpose.Thank You Julie
-
What do you mean by deadlock?
Deadlock is a situation where a group of processes are all blocked and none of them can become unblocked until one of the other becomes unblocked.The simplest deadlock is two processes each of which is waiting for a message from the other.
-
Give an example of microkernel?
Amoeba, WinNT, Minix
-
-
What is Dispatcher?
->Dispatcher module gives control of the CPU to the process selected by the short-term scheduler; this involves:Switching contextSwitching to user modeJumping to the proper location in the user program to restart that program Dispatch latency – time it takes for the dispatcher to stop one process and start another running.
-
-
-
-
-
-
-
-
What are the main difference between Micro-Controller and Micro- Processor?
A microcontroller is by definition a is a computer on a chip. It includes all the necessary parts (including the memory) all in one IC. You just need to apply the power (and possibly clock signal) to that device and it starts executing the program programmed to it. A microcontroller generally has the main CPU core, ROM/EPROM/EEPROM/FLASH, RAM and some necessary functions (like timers and I/O controllers)...
-
Differentiate between RAM and ROM?
Semiconductor memories are of two types: RAM (random access memory) and ROM (read only memory).RAM is a read/write memory. Information can be written into and read from a RAM. It is volatile memory.It stores information so long as power supply is on. ROM is permanent type memory. Its contents are not lost when power supply goes off. the user cannot write into a ROM.Its contents are decided by...
Windows Interview Questions
Ans