The kernel is the core part of the operating system. The kernel handles the machine side of things, while the GUI handles the user side of things.
Nobody has exactly definied what an Operating System is. If it is the kernel only, then the answer is no. If it is the kernel, the common libraries, the GUI and the applications together, then the answer is yes.
The Operating System provides a consistent interface between the hardware and the applications programs. The GUI provides a consistent visual interface for some applications programs on top of the kernel and other parts of the Operating System. Microsoft claims it's part of the OS some people agree some people don't.
The 2.4 version of the Linux kernel was released in 2001.
the kernel contains external commands true or false
no
The answer for this question is: Kernel, User, and GUI
The kernel is the core part of the operating system. The kernel handles the machine side of things, while the GUI handles the user side of things.
C. Distribution :)
Nobody has exactly definied what an Operating System is. If it is the kernel only, then the answer is no. If it is the kernel, the common libraries, the GUI and the applications together, then the answer is yes.
Windows 95 and 98 is based on the Windows 4.x Kernel. Windows 2000 and XP is baed on the NT Kernel. XP sports a different GUI compared to 95982000, this is the main difference between windows 2000/98 and XP.
In terms of performance, they can be equal, since both can be integrated into the kernel. A GUI will likely consume more resources, but on a fast enough system, this would be negligible. The real issue is the speed it takes to perform a certain action. For most purposes, a CLI will be faster to input data. A GUI is sometimes better for non-repetitive but highly complex tasks - like editing video or 3D modeling.
Gui Gui is born on August 11 1989
Gui Gui was born on 1989-08-11.
Windows NT uses protection mechanism called rings provides by the process to implement separation between the user mode and kernel mode.
The Operating System provides a consistent interface between the hardware and the applications programs. The GUI provides a consistent visual interface for some applications programs on top of the kernel and other parts of the Operating System. Microsoft claims it's part of the OS some people agree some people don't.
A Graphical User Interface (GUI) is, first and foremost, an event-driven program that runs on top of a command-line-driven operating system. Designing a GUI completely from scratch is not something to be undertaken lightly. The easiest way to create a GUI is to use a framework. Visual C++ provides the Microsoft Foundation Classes (MFC) framework which allows you to build Windows applications that conform to the Windows GUI, whilst giving you the freedom to design your own elements that can interact with the GUI, even if they bear no resemblance to the standard GUI elements. However, you cannot alter the Windows GUI itself (globally, that is) as it is an intrinsic component of the operating system. Although you can manipulate GUI elements in real-time, this places a huge strain upon resources and will greatly impede the overall performance. Under Linux you have far greater freedom because the command-line-driven kernel is completely separate from the GUI, thus you are free to design your own. This allows you to completely alter the GUI in any way you see fit. Again, a GUI framework is the easiest way to begin as it provides all the basic elements of a GUI, including message queues, memory management and multi-tasking -- all you really have to do is design the visual aspects of each element.