answersLogoWhite

0


Best Answer

There are some difficulties that a programmer must overcome in writing an operating system . Following are the difficulties

  1. There must be a prioritization i.e there must be time critical and priority wise list, because some process are more critical than other.
  2. There must be a mechanism in place for multitasking, meaning that the computer must be able to switch between multiple active processes.
  3. There must be interrupt handling scheme, so it can handle the interrupts while executing some process.
  4. It must maintain the time constrains, i.e scheduling schemes don't allow response time to exceed the time constraint.
  5. It must be platform independent, means it would work on any hardware.
  6. It must be secure and user friendly.
  7. It must be flexible.
  8. It must be efficient for doing process and utilize all recources.
User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

I find that the hardest part of programming is thinking of what to program.

However, for many people, the hardest part is getting their brain in the right frame of view and think the process through. For example, when writing a sorting algorithm, you would think that is pretty easy. But to tell a computer how to do it requires creative thinking.

Everyone has different opinions on programming difficulties, though, so don't take this answer as absolute.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

I think the main difficulty in real-time programming is meeting the "real-time" requirements, i.e., you are required to accomplish tasks within the real-time constraints which I believe vary. I learnt this in an engineering internship at military and their requirements were quite stringent and mission critical.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

This exact same question has been asked and answered several times before. Before asking a question you could get your answer quicker by searching for previous instances of the question and the answer supplied.

Well, on the first place, you have to be a very, very,VERY experienced programmer, with many years of practice.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

First, they have to spend a couple of years with learning the theory and practice of operating systems, and another couple of years with mastering real-time systems.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

First, they have to spend a couple of years with learning the theory and practice of operating systems, and another couple of years with mastering real-time systems.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the main difficulty that a programmer must overcome in writting an operating system for a real-time environment?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the main difficulty that a programmer must overcome an operating system for a real-time environment?

Understanding concurrency.


What is the main difficulty that a programmer must overcome in writing an operating system for a real-time environment?

errorstrapsinterruptsbut mainly program errors


What is the main difficulty that a programmer must overcome when writing an operating system for a real time environment?

go to school, come eat then go stage diving


What is the main difficulty that a programmer must overcome in writing an operating system for real-time environment?

First, they have to spend a couple of years with learning the theory and practice of operating systems, and another couple of years with mastering real-time systems.


Why do you think some managers have difficulty in delegating How do you feel they can overcome this difficulty?

Managers usually have difficulty in delegating because of the management style that they adopt. They can overcome this by adopting a democratic style of management.


Overcome?

To succeed in dealing with (a problem or difficulty).


The interquartile range is used as a measure of variability to overcome what difficulty of the range?

the range influences the extreme


Does every teen have to be trobeld?

No! All teens have things they are have difficulty dealing with, and need haelp to overcome them.


What is Albert Einstein's biggest problem they had to overcome?

Albert Einstein had several problems that he had to overcome, but his biggest was difficulty with authority in school. He was even labeled "dumb" in school as a child.


How do you overcome industrial pollution?

We can overcome industrial pollution by treating the industrial waste properly before leaving it into the environment ,so that the surroundings are not much polluted. So we can keep the environment clean.


Why was travel difficult in Greece how did the Greeks overcome this difficulty?

Roads were poor, and there weren't any fast vehicle areound.


What are the difficulty that the programmer must overcome writing an operating system for real time environment?

A real time operating system needs to be "event driven" and have the ability to perform certain tasks in a very timely manner. Most true real-time operating systems use interrupts to handle events as they occur, such as a time-critical input message from a serial port or a digital I/O event from some peripheral hardware. Next, there should be some kind of prioritization, meaning that one process may be time critical, such as controlling the rods at a nuclear reactor, but other processes might be a little less critical, such as dimming the hallway lights at the reactor facility after hours. Third, there must be a mechanism in place for "multitasking", meaning that the computer must be able to switch between multiple active processes. Some operating systems create a process "stack" for each process, and if a high priority process is to be activated to handle an event, the operating system simply switches control to the higher priority process by loading the current data from the process stack. A true real time operating system can do that in just a couple clock ticks.