Revision Flashcards
What is RAM
Random Access Memory:
Where runtime (data generated during program execution) data are stored.
What is ROM
Read Only Memory:
Stores data temporarily like instruction and fixed data
Which component determins frequency in a microprocessor?
The clock
A microprocessor system has 16M addressable locations. What is the minimum size of the ADDRESS bus to accommodate this?
24
What are buses within a processor?
the main means of communication
What are the 3 types of bus?
control, address, data
What does the control bus do?
carriers commands from processor to components
what does the address bus do?
used by the processor to transfer data between devices that are identified by specific locations
what does that data bus do?
carriers values after a read or to be written
multiple of 8 bits are sent at a time
What does PCI stand for?
Peripheral Component Interconnect
What is a PCI?
any piece of computer hardware that plugs directly into a PCI slot on a computer
how do you process bitwise NOT operations
flip the 1’s and 0’s for eg 1010 –> 0101
how do you process bitwise AND operations
multiple the bits together for e.g. 1100 AND 1001 = 1000
how do you process bitwise OR operations
put the binary numbers ontop of each other and always take the positive value
if two 0’s are above each other then that will equal a 0
for e.g. 1100 OR 1001 = 1101
how do you process bitwise XOR operations
if both bits are a 0 or a 1 then put 0.
otherwise put 1