answersLogoWhite

0

📱

Windows 2000

MS Windows 2000 operating system that was released for PC computers in 2000

569 Questions

Which is the next letter o t t f f s s e n?

T is next because the letters o, t, t, f, f, s, s, e, and n all stand for the beginning letters in the numbers one, two, three, four, five, six, seven, eight, and nine. To explain further: o=one, t=two, t=three, f=four, f=five, s=six, s=seven, e=eight, and n=nine.

Therefore, T would be next because ten is after nine numerically.

How does a java program differ when run on windows 98 and windows 2000?

Theoretically, it shouldn't, at least when running Sun's version of Java. However, Windows 2000 included Microsoft's customized version. If a program took advantage of the additional features that Microsoft added, it might not be capable of running on other platforms, including Windows 98.

How do you play Pokemon on your windows xp?

Do i have to answer everytime? u guys know i have a life right?! Anyway...... U can play Pokemon on your computer by downloading Pokemon PC. Its real fun. Try it sometime 'kay?

What is the difference between computer structure and computer function?

i think computer structure is just a drawing of computer in a postal or book while computer function is just like the purpose of a computer.

What type of software is MS Power Point?

MS Power Point is part of the Microsoft Office package, which is also now compatible for Macs too.

It's a very useful programme which enables you to create and view .pps files.

It's where you can make slides, add text, images, links to them, then animate them and watch them as a slideshow/presentation.

What should you do if your neighbor has peacocks and they come over and peck at your basement window and how do you stop them before they break the glass?

  • Talk to your neighbor so they are made aware of the problem. Hopefully he will be mature and pen up his bird, that is his responsibility. If the peacock pecks at your window this may sound stupid but he likes you and is being friendly BUT I do understand you being upset. Tell your neighbor he must pen him up.
  • I would think the noise they make would drive you mad. They have a distinct call and it can be irritating if there are enough of them. Tell your neighbor either they confine their peacocks or they will be getting the bill for your windows and if they don't like that idea you'll have the ASPCA take care of the matter. Explaining to you neighbor how much it will cost them, when it happens.
  • Tell your neighbour that it is unacceptable to allow their birds to roam onto and potentially damage other peoples property. Either they control the birds or you will contact the relevant authorities who will rehouse them with someone who will.
  • Talk to your neighbors and tell them what is going on. Then they can solve the problem. If they still don't do anything, you could talk to the people in charge of your city or the police. Most likely though, your neighbors don't know what their birds are doing, and they'll fix it when you talk to them.
  • Whether it be peacocks, dogs or cats, it's up to the owner to control them! Your need to communicate in a nice way to your neighbor that their peacocks are pecking at your basement window. I am sure they are not aware of this. The City Bylaws are keeping pets on the owners property. The neighbour will probably comply. Peacocks are a beautiful bird, but they can wail and can peck. They probably see their reflection in the window and think it's another bird. For now, try putting up dark paper so they don't get the reflection and it should stop them from pecking.
  • If you don't mind the birds being in your yard or on your property, a simple solution to stopping the window pecking is to get a window basement guard. These are usually made of a clear or semitransparent plastic and are rather a side-wise dome shape. It will also help on keeping the glass clean from debris and rain spots. You can usually find these at a large home improvement store. Another alternative is to give the window a wash treatment. This is done on the interior surface with a latex paint. It should be a thin coat and can even be done in a decorative manner if you are artistically inclined. By doing the wash, you will cut the reflective image coming back to the cock that antagonizes his desire to challenge what he perceives as another cock.
  • I have been issued citations by Brazoria County for hens, roosters, and wild ducks eating planted seed from neighbors flower bed. Even though we are located outside the city limits the law stats animals are to be contained. I could not catch them and instead of paying a $500 dollar fine for each animal, I was forced to shoot them. Its a shame a grown man can not out smart a Innocent fowl that was just hungry and I certainly do not blame the neighbor cause her flower bed would not grow. Sorry, I think the peacock male is the most beautiful of all the fowl.

What are reasons why you divide an operating system into kernel mode and user mode?

So normal programs can't deliberately crash other programs or cause them to malfunction.

Also, to protect hardware from malicious software.

What two main components is used by Kernel mode?

The kernel is a program that constitutes the central core of a computer operating system. It has complete control over everything that occurs in the system.

A kernel can be contrasted with a shell (such as bash, csh or ksh in Unix-like operating systems), which is the outermost part of an operating system and a program that interacts with user commands. The kernel itself does not interact directly with the user, but rather interacts with the shell and other programs as well as with the hardware devices on the system, including the processor (also called the central processing unit or CPU), memory and disk drives.

The kernel is the first part of the operating system to load into memory during booting (i.e., system startup), and it remains there for the entire duration of the computer session because its services are required continuously. Thus it is important for it to be as small as possible while still providing all the essential services needed by the other parts of the operating system and by the various application programs.

Because of its critical nature, the kernel code is usually loaded into a protected area of memory, which prevents it from being overwritten by other, less frequently used parts of the operating system or by application programs. The kernel performs its tasks, such as executing processes and handling interrupts, in kernel space, whereas everything a user normally does, such as writing text in a text editor or running programs in a GUI (graphical user interface), is done in user space. This separation is made in order to prevent user data and kernel data from interfering with each other and thereby diminishing performance or causing the system to become unstable (and possibly crashing).

When a computer crashes, it actually means the kernel has crashed. If only a single program has crashed but the rest of the system remains in operation, then the kernel itself has not crashed. A crash is the situation in which a program, either a user application or a part of the operating system, stops performing its expected function(s) and responding to other parts of the system. The program might appear to the user to freeze. If such program is a critical to the operation of the kernel, the entire computer could stall or shut down.

The kernel provides basic services for all other parts of the operating system, typically including memory management, process management, file management and I/O (input/output) management (i.e., accessing the peripheral devices). These services are requested by other parts of the operating system or by application programs through a specified set of program interfaces referred to as system calls.

Process management, possibly the most obvious aspect of a kernel to the user, is the part of the kernel that ensures that each process obtains its turn to run on the processor and that the individual processes do not interfere with each other by writing to their areas of memory. A process, also referred to as a task, can be defined as an executing (i.e., running) instance of a program.

The contents of a kernel vary considerably according to the operating system, but they typically include (1) a scheduler, which determines how the various processes share the kernel's processing time (including in what order), (2) a supervisor, which grants use of the computer to each process when it is scheduled, (3) an interrupt handler, which handles all requests from the various hardware devices (such as disk drives and the keyboard) that compete for the kernel's services and (4) a memory manager, which allocates the system's address spaces (i.e., locations in memory) among all users of the kernel's services.

The kernel should not be confused with the BIOS (Basic Input/Output System). The BIOS is an independent program stored in a chip on the motherboard (the main circuit board of a computer) that is used during the booting process for such tasks as initializing the hardware and loading the kernel into memory. Whereas the BIOS always remains in the computer and is specific to its particular hardware, the kernel can be easily replaced or upgraded by changing or upgrading the operating system or, in the case of Linux, by adding a newer kernel or modifying an existing kernel.

Most kernels have been developed for a specific operating system, and there is usually only one version available for each operating system. For example, the Microsoft Windows 2000 kernel is the only kernel for Microsoft Windows 2000 and the Microsoft Windows 98 kernel is the only kernel for Microsoft Windows 98. Linux is far more flexible in that there are numerous versions of the Linux kernel, and each of these can be modified in innumerable ways by an informed user.

A few kernels have been designed with the goal of being suitable for use with any operating system. The best known of these is the Mach kernel, which was developed at Carnegie-Mellon University and is used in the Macintosh OS X operating system.

It is not necessary for a computer to have a kernel in order for it to be usable, the reason being that it is not necessary for it to have an operating system. That is, it is possible to load and run programs directly on bare metal machines (i.e., computers without any operating system installed), although this is usually not very practical.


In fact, the first generations of computers used bare metal operation. However, it was eventually realized that convenience and efficiency could be increased by retaining small utility programs, such as program loaders and debuggers, in memory between applications. These programs gradually evolved into operating system kernels.

The term kernel is frequently used in books and discussions about Linux, whereas it is used less often when discussing some other operating systems, such as the Microsoft Windows systems. The reasons are that the kernel is highly configurable in the case of Linux and users are encouraged to learn about and modify it and to download and install updated versions. With the Microsoft Windows operating systems, in contrast, there is relatively little point in discussing kernels because they cannot be modified or replaced.

Categories of Kernels

Kernels can be classified into four broad categories: monolithic kernels, microkernels, hybrid kernels and exokernels. Each has its own advocates and detractors.

Monolithic kernels, which have traditionally been used by Unix-like operating systems, contain all the operating system core functions and the device drivers (small programs that allow the operating system to interact with hardware devices, such as disk drives, video cards and printers). Modern monolithic kernels, such as those of Linux and FreeBSD, both of which fall into the category of Unix-like operating systems, feature the ability to load modules at runtime, thereby allowing easy extension of the kernel's capabilities as required, while helping to minimize the amount of code running in kernel space.

A microkernel usually provides only minimal services, such as defining memory address spaces, interprocess communication (IPC) and process management. All other functions, such as hardware management, are implemented as processes running independently of the kernel. Examples of microkernel operating systems are AIX, BeOS, Hurd, Mach, Mac OS X, MINIX and QNX.

Hybrid kernels are similar to microkernels, except that they include additional code in kernel space so that such code can run more swiftly than it would were it in user space. These kernels represent a compromise that was implemented by some developers before it was demonstrated that pure microkernels can provide high performance. Hybrid kernels should not be confused with monolithic kernels that can load modules after booting (such as Linux).

Most modern operating systems use hybrid kernels, including Microsoft Windows NT, 2000 and XP. DragonFly BSD, a recent fork (i.e., variant) of FreeBSD, is the first non-Mach based BSD operating system to employ a hybrid kernel architecture.

Exokernels are a still experimental approach to operating system design. They differ from the other types of kernels in that their functionality is limited to the protection and multiplexing of the raw hardware, and they provide no hardware abstractions on top of which applications can be constructed. This separation of hardware protection from hardware management enables application developers to determine how to make the most efficient use of the available hardware for each specific program.

Exokernels in themselves they are extremely small. However, they are accompanied by library operating systems, which provide application developers with the conventional functionalities of a complete operating system. A major advantage of exokernel-based systems is that they can incorporate multiple library operating systems, each exporting a different API (application programming interface), such as one for Linux and one for Microsoft Windows, thus making it possible to simultaneously run both Linux and Windows applications.

What is kernel?

August 14, 2006 at 8:55 pm · Filed under Web Hosting, Windows Web Hosting

The central module of an operating system. It is the part of the operating system that loads first, and it remains in main memory. Because it stays in memory, it is important for the kernel to be as small as possible while still providing all the essential services required by other parts of the operating system and applications. Typically, the kernel is responsible for memory management, process and task management, and disk management.

When a computer crashes, it actually means the kernel has crashed. If only a single program has crashed but the rest of the system remains in operation, then the kernel itself has not crashed.. A crash is the situation in which a program, either a user application or a part of the operating system, stops performing its expected function(s) and responding to other parts of the system. The program might appear to the user to freeze. If such program is a critical to the operation of the kernel, the entire computer could shut down.

Categories of Kernels

Kernels can be classified into four broad categories: monolithic kernels, microkernels, hybrid kernels and exokernels.

Example of round robin scheduling?

example on round robin problem in OS:

let here p1,p2,p3,p4 are some process and its burst time is given as:

P1=6

P2=8

P3=2

P4=4

time quantum=4 millisec

PROCESSES P1 P2 P3 P4 P1 P2

CPU CYCLES 0 4 8 10 14 16 20

SO in this example, a process cannot exceed more than 4 millisec. so each process is not exceeding more than 4 millisec. as p1 starting time is 0 ms and ending time is 4 ms then another process started at this time which also complete 4 cycles then another process p3 start which need only 2 cycles to complete its execution ,so goes only 2 cycles and finish its execution at time 14 and p4 complete its execution at 14 . now dis process will again started until all the process does not complete its execution remaining in the time quantum limit.

Electric windows wont work 2000 Bonneville?

check your fuses mine was the radio fuse so i had no radio either. for more info on bonnevilles check out pontiacbonnevilleclub.com you can learn lots and if this didn't answer your question they can help you find and fix the problem!!!

Your infotainment system is stuck on trip computer cleared how can this be reset?

I had the same problem on '03 Saab 93 ss , i over cleared a warning message on the SID , which resulted in the "Trip Computer Cleared " message appearing , very simple fix just disconnected the battery for a few seconds and display returned to normal -reset clock and once car was moving information displayed again on fuel consumption & temp etc....

Hope this helps ,

Just had the same issue with my 2005 Saab 9-3. To reset the SID, remove the fuses from slots 3 and 14 on the side panel that holds all fuses---consult owners manual for precise location. Leave the fuses out for a couple of hours (I removed them overnight), and the SID display will reset....two hours or more is important, nothing happens if you simply remove the fuses and immediately replace them......good luck!

What is the cheapest way to get from beauvais to eurodisney?

Probably by bus to Paris and then train to eurodisney... however if there are 3+ travelling in your group you are probably better off getting a direct private transfer from beauvais to Disney... this will cost more but is well worth it, saving both time, hassle and stress!

The Ryanair bus from Beauvais to Paris is great, it takes at least 75 mins to get to Paris. But then you have to walk to the metro, then change and take the RER to Disney then get a shuttle bus to one of the Disney Hotels. The whole trip takes 3 hours. A private shuttle to Disney takes 75 to 90 mins and is door to door.

There are lots of shuttle companies who advertise on the web. If you do a Google search you'll find hundreds. I've already used shuttle-transfers.net, and they were brilliant (cheap & reliable), but there are many others.

Prices range drastically from 110 euro to 190 euro for a private service, depending on the company you pick. Shared services are cheaper, but you may have to wait around for extra passengers to fill up the minibus. And the trip is not always direct.

How do you reprogram my computer?

You are unable to "reprogram" a average computer. This is because Window's, Mac, and Chrome OS do not share their Operating System's source code. This is because it could easily be stolen and put to other uses. To change settings on your computer you are able to navigate to your "Control Panel" and do so through there.

What is Windows NT?

Windows NT ("New Technology") is a family of Operating Systems produced by Microsoft, the first version of which was released in July 1993. It was originally designed to be a powerful high-level-language-based, processor-independent, multiprocessing, multiuser operating system with features comparable to Unix. It was intended to complement consumer versions of Windows that were based on MS-DOS http://en.wikipedia.org/wiki/Windows_NT

How can you start any of the accessories in windows operating system?

you can start any of the accessories from the start menu then go to all programs and then you will find accessories.

Hope i helped

How do you fix the problem of Windows 2000 computer freezing when it is unused for some 20 minutes?

Once you leave your computer, and also if you know that you will be away for about 20+ minutes then put your computer on stand by. either click the start button and click stand by or just push the power button once and do not hold unless you want your computer to turn off and erase all unsaved data. - yeah, what a fix! Better yet, don't even switch it on. Any other bright ideas?

What were the disadvantages of Windows 2000?

There were few disadvantages. It kept too many logs and stuff like that, but that could be disabled. It just cannot use modern drivers or run modern software.

Will Minecraft work on Windows 2000?

Yes, as long as you have a recent version of Java installed.

How do you install Windows?

The installation process varies somewhat from version to version. For specific instructions, choose one of the questions below.

How do you install a plow setup on 1986 Chevy?

snowbear plows will ship you a custom bracket if you buy their plow, bolt on no welding required.

Windows 2000 is a type of what?

Windows 2000 was simply a type of operating system. It was intended for the professional server and workstation market.