Computer Systems Flashcards
What does an OR gate look like?
What does a NOT gate look like?
What does an AND gate look like?
What does a XOR gate look like
How do you represent NOT(A)? What is another word for the NOT gate
Ā, negation
How do you represent (A OR B), what is another word for the OR gate?
(A + B), Disjunction.
How do you represent (A AND B)? What is another word for the AND gate?
(A.B) , Conjunction
How do you represent (A XOR B)? What is another word for XOD gate?
(A ⊕ B), Exclusive disjunction
What does XOR gate do?
returns true only if exactly one input is true, otherwise returns false.
What is application software, give examples?
Application software is for user benefit. Word processors, internet browsers, games
What is system software, give examples?
System software performs the tasks needed to operate the hardware and provide services for other software. OS, game engines, utility programmes.
What is the Operating System?
the essential software that links the hardware and other software together and generally manages the computer system.
What is the purpose of the OS? 4 points.
- It manages the hardware (only the OS can interact with it)
- Manages the applications installed
- Creates a user interface (abstraction from the hardware
- Provides a layer of security (as it sits between the hardware and the application software
What are the two categories of the user interface?
- Command line interface - A shell responding to successive text commands (more direct and compact)
- Graphical User Interface - Uses icons and visual indicators to navigate and issue commands
How does the OS control process management? Multi tasking, single tasking?
- process = programme being executed by the computer
- A single tasking OS executes one process at a time and interrupts it if necessary
- a Multi tasking OS executes 1 process at a time but allows multiple applications to run by rapidly switching between process
- The OS allocates CPU time for each process and prioritises them in order of importance