1) Base of hexadecimal number system? Answer : 16 2) Universal gate in digital logic? Answer : NAND 3) Memory type that is non-volatile? Answer : ROM 4) Basic building block of digital circuits? Answer : Gate 5) Device used for data storage in sequential circuits? Answer : Flip-flop 6) Architecture with shared memory for instructions and data? Answer : von Neumann 7) The smallest unit of data in computing? Answer : Bit 8) Unit that performs arithmetic operations in a CPU? Answer : ALU 9) Memory faster than main memory but smaller in size? Answer : Cache 10) System cycle that includes fetch, decode, and execute? Answer : Instruction 11) Type of circuit where output depends on present input only? Answer : Combinational 12) The binary equivalent of decimal 10? Answer : 1010 13) Memory used for high-speed temporary storage in a CPU? Answer : Register 14) Method of representing negative numbers in binary? Answer : Two's complement 15) Gate that inverts its input signal? Answer : NOT 16)...
File-System Implementation
File-System Structure
* Hard disks have two important properties that make them suitable for secondary storage of files in file systems: (1) Blocks of data can be enlarged in place, and (2) they are direct access, permitting any block of data to be
accessed with only ( relatively ) minor movements of the disk heads and rotational latency.
* Disks are usually processed in physical blocks, rather than a byte at a time. Block sizes may range from 512 bytes to 4K or longer.
* File systems keeps storage on disk drives, and can be viewed as a layered design:
• At the lowest layer are the physical devices, containing of the magnetic media, motors & controls, and the electronics connected to them and controlling them.
Modern disk put excess and excess of the electronic controls directly on the disk
drive itself, leaving relatively little work for the disk controller card to perform.
• I/O Control contains of device drivers, special software programs ( often written
in assembly ) which communicate with the devices by reading and writing special
codes directly to and from memory addresses respective to the controller
card's registers. Each controller card ( device ) on a system has a various set of
addresses ( registers, a.k.a. ports ) that it listens to, and a different set of command
codes and results codes that it understands.
• The basic file system level works directly with the device drivers in terms of
restoring and storing raw blocks of data, without any consideration for what is in
each block. Depending on the system, blocks may be referred to with a single
block number, ( e.g. block # 234234 ), or with head-sector-cylinder combinations.
• The file organization module knows about files and their logical blocks, and how they map to physical blocks on the disk. In addition to translating from logical to physical blocks, the file organization module also maintains the list of free blocks, and allocates free blocks to files as needed.
• The logical file system deals with all of the meta data associated with a file ( UID,
GID, mode, dates, etc ), i.e. everything about the file except the data itself. This
level manages the directory structure and the mapping of file names to file control
blocks, FCBs, which contain all of the meta data as well as block number information for finding the data on the disk.
* The layered approach to file systems means that much of the code can be used uniformly for a wide variety of different file systems, and only certain layers need to be file systemspecific. Common file systems in use include the UNIX file system, UFS, the Berkeley Fast File System, FFS, Windows systems FAT, FAT32, NTFS, CD-ROM systems ISO 9660, and for Linux the extended file systems ext2 and ext3 ( among 40 others supported)