What Operating System does the Motorola Q smartphone use?
The Motorola Q smartphone uses the windows operating system. One can find more information on this smartphone by visiting the official Motorola website. One can also purchase this smartphone from online retailers such as Amazon.
What are the operating system benefits of installing CRM software applications?
There are many operating system benefits of installing CRM software applications. Some of the benefits include contribution to top line revenues, cost saving, improved customer loyalty due to a better service, and improved decision making.
Since Microsoft PowerPoint shares the same functionality you are probably familiar with from using other applications, you can close it easily.
Error code E0000225 appears when a mobile device is having trouble connecting to the PC.
There are many choices for RTOSes -- proprietary and open source. There is no one dominant RTOS because there are so many processor choices and so many different application requirements. Here are a few popular RTOSes (proprietary) * Integrity * Nucleus * RTXC Quadros * ThreadX * VxWorks Here are some of the open source RTOSes/OSes * eCOS * uClinux PSOS, vx works, PSOS, vx works,
Affordable System Operational Effectiveness (ASOE)
Why do some systems store the operating system in firmware and other on disk?
The firmware usually contains all of the code necessary to boot the machine. If the firmware is damaged, the machine will be unusable. Give the relative difficulty of upgrading firmware safely, it is often better to place only immutable code in the firmware, and make any changes / fixes necessary to the operating system on disk.
5 difference between a network operating system and a stand alone operating system?
Many operating systems now can run on standalone computers and also on networked computers. Standalone or generic operating systems are the ones which run on standalone computers like Windows operating system running on a PC. Network operating systems are the ones which run on a server and can be accessed through client machines connected on the network. e.g. Solaris or Linux running on a server can be used as network operating systems. Even there are Windows server operating systems which can be used by clients connected on the network.
ILYAS MAHIDA
What is the purpose of interrupts in Operating System?
Answer: An interrupt is a hardware-generated change-of-flow within the system. An interrupt handler is summoned to deal with the cause of the interrupt; control is then returned to the interrupted context and instruction. A trap is a software-generated interrupt. An interrupt can be used to signal the completion of an I/O to obviate the need for device polling. A trap can be used to call operating system routines or to catch arithmetic errors.
Type your answer here...
The virtual memory subsystem and the storage subsystem are typically tightly-coupled and require careful design in a layered system due to the following interactions. Many systems allow files to be mapped into the virtual memory space of an executing process. On the other hand, the virtualmemory subsystem typically uses the storage system to provide the backing store for pages that do not currently reside in memory. Also, updates to the filesystem are sometimes buffered in physical memory before it is flushed to disk, thereby requiring careful coordination of the usage of memory between the virtual memory subsystem and the filesystem.
Describe the three categories of operating systems?
As computers have progressed and developed so have the operating systems. Below is a basic list of the different operating systems and a few examples of operating systems that fall into each of the categories. Many computer operating systems will fall into more than one of the below categories.
GUI - Short for Graphical User Interface, a GUI Operating System contains graphics and icons and is commonly navigated by using a computer mouse. See the GUI definition for a complete definition. Below are some examples of GUI Operating Systems.
System 7.x
Windows 98
Windows CE
Multi-user - A multi-user operating system allows for multiple users to use the same computer at the same time and different times. See the multi-user definition for a complete definition for a complete definition. Below are some examples of multi-user operating systems.
Linux
Unix
Windows 2000
Multiprocessing - An operating system capable of supporting and utilizing more than one computer processor. Below are some examples of multiprocessing operating systems.
Linux
Unix
Windows 2000
Multitasking - An operating system that is capable of allowing multiple software processes to run at the same time. Below are some examples of multitasking operating systems.
Unix
Windows 2000
Multithreading - Operating systems that allow different parts of a software program to run concurrently. Operating systems that would fall into this category are:
Linux
Unix
Windows 2000
What are the advantages of multi-tasking operating systems?
multi tasking operating system saves time.
increases uses productivity.
easy data transfer to diffrent windows
increases the cpu utilisation
What are the differences between various operating systems?
difference between layered and kernel base approach in OS structure
Such as Windows 7 or Windows Vista or Windows XP or Windows ME or Windows 2000 or Windows 98 or Windows 95 or Mac OSes
Type your answer here... D0-D7 on 1st 8to1, D8-D15 on 2nd 8to1, S0,S1,S2 to both. The output from 1st 8to1 is D0 on the 2to1, the output from the 2nd 8to1 is D1 on the 2to1 and S3 to the 2to1. The 2to1 provides the final 16to 1 mutiplexed output, OK?
What is difference between OS and compiler?
An OS is an Operating System. This is the main software running on a computer that you interface with and run your programs... such as Microsoft Windows, or Apple's Mac OS X.
A complier is a tool used to take the programming source code that someone has written to make a program, and build it into an actual application to run... which will then run on an OS most of the time.... though OSes are programmed and compiled as well.
What are the four major resource manager in typical operating system?
I don't think there are four resource managers in a typical OS. Usually a kernel will have:
1. A process scheduler, which will determine when which process runs on what CPU or core and for how long based on various rules often hardcoded into it. Usually how it works is based on priorities of each process (How 'important' the process is, rather, how much CPU time the process really needs every quantum.), preemption (Interrupting a process whenever an interrupt occurs.), and blocking (When a process pauses itself when it makes a request to the operating system, usually involving I/O operations, via system call or message passing.). The scheduler also handles most of the decisions on when a process is created or destroyed, since it'll need to make that call based on its own queue.
2. A memory manager, which in most operating systems will provide virtual memory and paging. It's job is to set up a protected memory system, which means no process should even see another process's memory, let alone write to it. Virtual memory is the best way to do this, as it means that every process will see a "simulated world" for itself in memory and nothing else. The operating system, and often the hardware, will transparently handle translating a process's addressing to real physical addresses in system RAM. This keeps even the buggiest of userspace programs from affecting any other process or even the running kernel itself should it misbehave. Paging is a mechanism where these little virtual memory spaces are broken up into little pieces of equal length, allowing a program to be allocated memory even in non-contiguous spaces in memory. Further, swap relies on paging support, allowing pieces of a processes memory to be stored on the hard disk when not needed if physical RAM runs low. As a memory manager is meant to protect processes from each other and the operating system from its processes, if a programtries to access memory in a way that isn't allowed, the operating system can quickly terminate the process.
3. There is also the I/O scheduler. It is also like the process scheduler in that it has to make quick on-the-fly decisions on what process gets use of something. In this case hardware, usually a disk.
4. Interprocess communication mechanisms: As a process cannot access another process in memory, the kernel does need to provide at least one avenue for processes to tell other processes what they need from each other. Usually there will be something in userspace that actually handles these transactions through the kernel.
5. Finally, driver support. All kernels need to provide some way for drivers, programs that provide communication and control of the hardware, to get the kernel to talk to the hardware. Kernels usually come in two flavors: Monolithic and micro, and one of the most importatnt and fundamental differences between the two is how their drivers work. A monolithic kernel will generally allow all drivers to become a part of it, either compiled right in or, more commonly, as loadable kernel modules. This allows drivers to talk to the kernel and their hardware directly. Microkernels, on the other hand, have only a basic process scheduler, memory manager, and IPC mechanism, and rely on userspace to provide the rest of the system, including drivers. Drivers have no direct line to the kernel but will have to end up making system calls like any user space program. This design, needless to say, is not efficient. There are also "hybrid" kernels, but generally they are still monolithic in design, but have a component or two in userspace. Drivers will almost certainly still be loadable kernel modules or part of the kernel, as most operating system designers agree, performance is better served when device drivers do not have to compete with userspace processes for kernel services.
What are the characteristics of disk operating system?
1 ) Head Motion.
2) Disk Portability.
3)Sides .
4)Platters.
5)Head Mechanism.
true
What are the factors taken into consideration when allocating CPU to a process in o.s?
What are the factors taken into consideration when allocating CPU to a process in o.s?
Define essential properties of batch operating system?
Batch: Jobs with similar needs are batched together and run through the computer as a group, by an operator or automatic job sequencer. Performance is increased by attempting to keep CPU and I/O devices busy at all times through buffering, off-line operation, spooling, and multiprogramming.