1. What is no bugs in the monitor program?
No bugs in the first, smaller, version of the software (256 bytes of code blown into PROM by Nick Toop?s PROM blower). There were a couple of problems with the cassette interface software because I got the order of bits the wrong way round (from the CUTS? standard). But hey, it was only 512 bytes: you can?t make any mistakes in that even when you write it by hand, hand assemble it and hand enter it into the PROM blower! Besides, it could debug itself to a fair extent (given that it basically worked).
2. Which are the key design issues of a computer Network?
★ Connectivity
★ Cost-effective Resource Sharing
★ Support for common Services
★ Performance
3. List the names of layers which are network support layers?
★ Physical Layer
★ Data link Layer and
★ Network Layers
If the message is sent from a source to a single destination node, it is called Unicasting.
If the message is sent to some subset of other nodes, it is called Multicasting.
If the message is sent to all the m nodes in the network it is called Broadcasting.
Science of Cambridge used 8154s on its MK14 kit (National SC/MP based) and so they were available when we needed something for the 6502. They were fairly cheap and the extra RAM was a bonus, even though it meant converting from 6502 clock/write to the read strobe/write strobe that they used.
8. Tell me what else do you remember about the Acorn System 1?
Packing them in boxes (upstairs at 4a Market Hill): the whole company would stand around tables (a production square) and put in the right components (me, Hermann, Hermann?s then fianc? Stephen, Chris). We all did pretty much anything: I ended up as Hermann?s secretary before we could afford one!
There used to be problems with answering the phone: one chap would ring up and say ?I have got an Acorn, it does not work? often enough for it to become a legend. We got very tired of kits ? the highlight being a guy who assembled his Atom with glue because he knew that heat (solder) would damage them ? so that coloured the BBC machine a lot.
9. List the typical elements of a process image?
User data:
Modifiable part of user space. May include program data, user stack area, and programs that may be modified.
User program:
The instructions to be executed.
System Stack:
Each process has one or more LIFO stacks associated with it. Used to store parameters and calling addresses for procedure and system calls.
Process control Block (PCB):
Info needed by the OS to control processes
10. Tell me was the design based on/derived from an earlier machine? Kim-1, Apple I, etc.?
Not exactly based on anything. Most of its heritage was from an automated cow feeder that I?d designed for a Harrogate company the previous summer (1977). Quite an advanced thing, really ? it had a (waterproof) number pad, big 7 segment LEDs, OS in non-volatile EEPROM, and the trademark 6502. Both were from my own designs for something for myself, and they came from the aether.
The most hair-raising thing was the cow-feeder?s programme. I didn?t own a PROM blower, so I had to write the whole thing by hand and send it off to a company who hand entered it into a machine and sent me back the PROM. That worked first time, too. Mind you, it was even smaller, being a boot loader that allowed the cow-feeder?s EEPROM to be initialised.
DDks are device driver kits, which are equivalent to SDKs for writing device drivers. Windows NT includes DDks.
FDM is an analog technique that can be applied when the bandwidth of a link is greater than the combined bandwidths of the signals to be transmitted.
13. How did Acorn Microcomputer get started?
I had designed something similar for myself, and was in the process of helping Hermann [Hauser] with his ideas for an ?electronic pocket book? (what we might nowadays call a PDA). In the course of showing that my designs for it would work, I showed him my schematics for my own machine and was challenged to build it. So I did? With my own white ceramic 6502, too. That was ?just? the equivalent of the CPU board of the System 1 with LEDs and keyboard (all on the same bit of Veroboard) ? the cassette interface was added later. I think Hermann was overly impressed when it worked first time!
Because it was there. Because it was new. Because a few of the other members of the Cambridge University Processor Group [CUPG] were going on about it being easier to interface to circuits. I guess I don?t really know precisely why I chose the 6502 ? maybe we just had an affinity!
It cost quite a lot back in 1977/78 when I bought mine ? which was a wonderful white ceramic part with gold (coloured?) legs and lid.
15. Tell me what has triggered need for multitasking in PCs?
Increased speed and memory capacity of microprocessors together with the support fir virtual memory and Growth of client server computing.
16. What is Buddy system of memory allocation?
Free memory is maintained in linked lists, each of equal sized blocks. Any such block is of size 2k. When some memory is required by a process, the block size of next higher order is chosen, and broken into two. Note that the two such pieces differ in address only in their kth bit. Such pieces are called buddies. When any used block is freed, the OS checks to see if its buddy is also free. If so, it is rejoined, and put into the original free-block linked-list.
Defining a useful channel involves both understanding the applications requirements and recognizing the limitations of the underlying technology. The gap between what applications expects and what the underlying technology can provide is called semantic gap.
In STDM, the multiplexer allocates exactly the same time slot to each device at all times, whether or not a device has anything to transmit.
19. List the advantages of distributed processing?
★ Security/Encapsulation
★ Distributed database
★ Faster Problem solving
★ Security through redundancy
★ Collaborative Processing
Also called FIFO anomaly. Usually, on increasing the number of frames allocated to a process virtual memory, the process execution is faster, because fewer page faults occur. Sometimes, the reverse happens, i.e., the execution time increases even when more frames are allocated to the process. This is Belady's Anomaly. This is true for certain page reference patterns.
21. Tell me what are the sub-components of I/O manager in Windows NT?
★ Network redirector/ Server
★ Cache manager.
★ File systems
★ Network driver
★ Device driver
22. Which layer links the network support layers and user support layers?
The Transport layer links the network support layers and user support layers.
23. List the criteria necessary for an effective and efficient network?
★ Performance:
It can be measured in many ways, including transmit time and response time. ★ Reliability:
It is measured by frequency of failure, the time it takes a link to recover from a failure, and the network's robustness.
★ Security:
Security issues includes protecting data from unauthorized access and virues.
TDM is a digital process that can be applied when the data rate capacity of the transmission medium is greater than the data rate required by the sending and receiving devices.
25. Which factors that affect the reliability of the network?
a) Frequency of failure
b) Recovery time of a network after a failure
26. Which factors affect the performance of the network?
a) Number of Users
b) Type of transmission medium
c) Hardware
d) Software
27. What factors that affect the security of the network?
★ Unauthorized Access
★ Viruses
28. List the key elements of Microcomputers protocols?
The key elements of protocols are
a. Syntax:
It refers to the structure or format of the data, that is the order in which they are presented.
b. Semantics:
It refers to the meaning of each section of bits.
c. Timing:
Timing refers to two characteristics: When data should be sent and how fast they can be sent.
29. You were an undergraduate student at Cambridge then. Explain what were you studying?
Maths, followed by Computer Science.
30. Is there No bugs in the monitor program?
No bugs in the first, smaller, version of the software (256 bytes of code blown into PROM by Nick Toop?s PROM blower). There were a couple of problems with the cassette interface software because I got the order of bits the wrong way round (from the CUTS? standard). But hey, it was only 512 bytes: you can?t make any mistakes in that even when you write it by hand, hand assemble it and hand enter it into the PROM blower! Besides, it could debug itself to a fair extent (given that it basically worked).
Because it was there. Because it was new. Because a few of the other members of the Cambridge University Processor Group [CUPG] were going on about it being easier to interface to circuits. I guess I don?t really know precisely why I chose the 6502 ? maybe we just had an affinity!
It cost quite a lot back in 1977/78 when I bought mine ? which was a wonderful white ceramic part with gold (coloured?) legs and lid.
Because Hermann had them around: Science of Cambridge used 8154s on its MK14 kit (National SC/MP based) and so they were available when we needed something for the 6502. They were fairly cheap and the extra RAM was a bonus, even though it meant converting from 6502 clock/write to the read strobe/write strobe that they used.
33. Explain When did you first show it to Hermann Hauser?
During the time it was built! Hermann was very interested in it. It certainly worked before I went back to Yorkshire before the start of the term.
34. Explain Who designed the hardware?
Me for the bottom board. Me, Stephen Furber and maybe Kim Spence-Jones for the top board (cassette interface). (Hmmm ? maybe KSJ was a little later ? he certainly did some of the work on the analogue bits of the BBC machine cassette interface.)
When combined with other integrated circuits that provide storage for data and programs, often on a single semiconductor base to form a chip, the microprocessor becomes the heart of a small computer , or microcomputer.