1. Give two reasons why a computer is often called a "two state" machine.A computer is often called a "two state" device as in it's simplist form, all instructions are either 1 or 0
2. Explain how 2's compliment worksTwo's complement works by addressing the far most left digit as a negative power of 2, and the remainder of the series of binary digits are positive powers of two. By doing this it only allows for one value of zero.
To compute a number in Two's Complement you would add the positive powers of 2 to the negative power of two, or to zero if the negative power of 2 is set to 0.
eg. -128 in Two's Complement would be "10000000"
-124 in Two's complement would be "10000100", since -128 + 4 = -124
3. Explain the term "addressability"Addressabilty is the ability for the processor to give each memory location a unique address for easy access. This also prevents one memory location being used twice at the same time.
4. Give two advantages of having an operating system in RAM rather than ROM.Storing the OS in RAM gives the possibility of system files being Updated.
Another advantage would be that the Operating System can be changed for a diffrent OS.
5. Explain the purpose of a bootstrap loader.A more simplistic approach here:
A Bootstrap loader is a small pice of coding found in ROM (AKA BIOS/CMOS) which has one main purpose, to load an operating system into memory.
6. Explain the difference between a spooler and a buffer, and give an example where a spooler would be used in preference to buffer.A buffer is RAM which is specific for the purpose of tempory storage of data being transffered between two devices. A spooler is a pice of software with will use an area of a computers RAM to act like a buffer, but the user can have much more control over it. A spooler is most likely to be used in a networking enviroment rather than a buffer.
7. What is the approximate capacity of a standard DVD and CD?CD - 650MB and 700MB (800MB and i think 900MB versions exist, but are hard to come by)
DVD - 5GB(Single Layer), 10GB(Dual Layer)
Hope that helps