Computer resources: Difference between revisions
Mr. MacKenty (talk | contribs) (Created page with "right|frame|Resource Management<ref>http://www.flaticon.com/</ref> In computer programming, resource management refers to techniques for managing resour...") |
Mr. MacKenty (talk | contribs) No edit summary |
||
Line 4: | Line 4: | ||
Resources which needs to be managed | == Resources which needs to be managed == | ||
{| style="width: 95%;" class="wikitable" | {| style="width: 95%;" class="wikitable" | ||
Line 32: | Line 32: | ||
== an excellent video to get you started == | |||
<html> | |||
<iframe width="560" height="315" src="https://www.youtube.com/embed/26QPDBe-NB8" frameborder="0" allowfullscreen></iframe> | |||
</html> | |||
Revision as of 09:27, 29 November 2017
In computer programming, resource management refers to techniques for managing resources (components with limited availability). It includes both preventing resource leaks (releasing a resource when a process has finished using it) and dealing with resource contention (when multiple processes wish to access a limited resource). Resource leaks are an issue in sequential computing, while resource contention is an issue in concurrent computing. On many systems the operating system reclaims resources after the process makes the exit system call.[2]
Resources which needs to be managed[edit]
Resource | Description |
---|---|
Primary memory | foo |
Secondary storage | foo |
processor speed | foo |
bandwidth | foo |
screen resolution | foo |
disk storage | foo |
sound processor | foo |
graphics processor | foo |
cache | foo |
Network connectivity | foo |
an excellent video to get you started[edit]
Standards[edit]
- Identify the resources that need to be managed within a computer system.
- Evaluate the resources available in a variety of computer systems.