Terminology means Technical Definition, here are some terminologies used for computers, they are categorized alphabetically, either you scroll down the page until you reach the terminology you wants, or it would be easier to click the terminology you want from the list. I hope you like this page and make a good use of it, also there will be an updates in the future, you may visit it regularly. 

Choose.gif (440 bytes)a.gif (124 bytes)b.gif (127 bytes)c.gif (131 bytes)d.gif (129 bytes)e.gif (116 bytes)f.gif (114 bytes)g.gif (141 bytes)h.gif (121 bytes)i.gif (71 bytes)j.gif (85 bytes)k.gif (124 bytes)l.gif (75 bytes)m.gif (142 bytes)n.gif (103 bytes)o.gif (137 bytes)p.gif (92 bytes)q.gif (140 bytes)r.gif (129 bytes)s.gif (133 bytes)t.gif (80 bytes)u.gif (127 bytes)v.gif (130 bytes)w.gif (150 bytes)x.gif (124 bytes)y.gif (119 bytes)z.gif (117 bytes)

Letter F : FAQ - FAT - FireWall - Flash Memory - FlowChart - FPU - Frame Rate            

 

  FAQ

Top.gif (1083 bytes)

   The FAQ (pronounced FAk) or list of "frequently-asked questions" (and answers) has become a feature of the Internet. The FAQ seems to have originated in many of the Usenet groups as a way to acquaint new users with the rules. Today, there are thousands of FAQs on the World Wide Web.

   To see the range and variety of topics for which FAQs have been written, go to Yahoo or any major search engine, and enter "faq" or "faqs" in the search entry box. To find a FAQ on a subject of interest (for example, hedgehogs), enter "faq and hedgehogs"(without the quotes). Also note that the number of subjects on which you will NOT find is FAQ is also large. The most useful FAQs are often found at a Web site you've discovered through other search approaches.

 

Selected Links
Thomas Boutell's World Wide Web FAQ (http://www.boutell.com/faq/) is a useful FAQ about the World Wide Web.
Frequently Asked Questions about Netscape Products (http://help.netscape.com/faqs.html) is just that (plus the answers).
The Unofficial Netscape FAQ (http://www.ufaq.org/) is another FAQ about Netscape.

 

  FAT

Top.gif (1083 bytes)

   A file allocation table (FAT) is a table that an operating system maintains on a hard disk that provides a map of the clusters (the basic unit of logical storage on a hard disk) that a file has been stored in. When you write a new file to a hard disk, the file is stored in one or more clusters that are not necessarily next to each other; they may be rather widely scattered over the disk. A typical cluster size is 2,048 bytes, 4,192 bytes, or 8,096 bytes. The operating system creates a FAT entry for the new file that records where each cluster is located and their sequential order. When you read a file, the operating system reassembles the file from clusters and places it as an entire file where you want to read it. For example, if this is a long Web page, it may very well be stored on more than one cluster on your hard disk.

   Until Windows 95 OSR2 (OEM Release 2), DOS and Windows file allocation table entries were 16 bits in length, limiting hard disk size to 128 megabytes, assuming a 2,048 size cluster. Up to 512 megabyte support is possible assuming a cluster size of 8,192 but at the cost of using clusters inefficiently. DOS 5.0 and later versions provide for support of hard disks up to two gigabytes with the 16-bit FAT entry limit by supporting separate FATs for up to four partitions.

   With 32-bit FAT entry (FAT32) support in Windows 95 OSR2, the largest size hard disk that can be supported is two terabytes! However, personal computer users are more likely to take advantage of FAT32 with 5 or 10 gigabyte drives.

 

  Firewall

Top.gif (1083 bytes)

   A firewall is a set of related programs, located at a network gateway server, that protects the resources of a private network from users from other networks. (The term also implies the security policy that is used with the programs.) An enterprise with an intranet that allows its workers access to the wider Internet installs a firewall to prevent outsiders from accessing its own private data resources and for controlling what outside resources its own users have access to.

   Basically, a firewall, working closely with a router program, filters all network packets to determine whether to forward them toward their destination. A firewall also includes or works with a proxy server that makes network requests on behalf of workstation users. A firewall is often installed in a specially designated computer separate from the rest of the network so that no incoming request can get directly at private network resources.

   There are a number of firewall screening methods. A simple one is to screen requests to make sure they come from acceptable (previously identified) domain names and IP addresses. For mobile users, firewalls allow remote access in to the private network by the use of secure logon procedures and authentication certificates.

   A number of companies make firewall products. Features include logging and reporting, automatic alarms at given thresholds of attack, and a graphical user interface for controlling the firewall.

 

Selected Links
Here is a list of Commercial Firewall Vendors.
Tom Sheldon's General Firewall White Paper is an illustrated discussion taken from his book, The Windows NT Security Handbook.
Marcus J. Ranum's Internet Firewalls Frequently Asked Questions is comprehensive.

 

  Flash Memory

Top.gif (1083 bytes)

   Flash memory (sometimes called "flash RAM") is a type of constantly-powered nonvolatile memory that can be erased and reprogrammed in units of memory called blocks. It is a variation of electrically erasable programmable read-only memory (EPPROM) which, unlike flash memory, is erased and rewritten at the byte level, which is slower than flash memory updating. Flash memory is often used to hold control code such as the Basic Input/Output System (BIOS) in a personal computer. When BIOS needs to be changed (rewritten), the flash memory can be written to in block (rather than byte) sizes, making it easy to update. On the other hand, flash memory is not useful as random access memory (RAM) because RAM needs to be addressable at the byte (not the block) level.

   Flash memory gets its name because the microchip is organized so that a section of memory cells are erased in a single action or "flash." The erasure is caused by Fowler-Nordheim tunneling in which electrons pierce through a thin dielectric material to remove an electronic charge from a floating gate associated with each memory cell. Intel offers a form of flash memory that holds two bits (rather than one) in each memory cell, thus doubling the capacity of memory without a corresponding increase in price.

   Flash memory is used in digital cellular phones, digital cameras, LAN switches, PC Cards for notebook computers, digital set-up boxes, embedded controllers, and other devices.

 

Selected Links
AMD's Flash Memory page describes its simultaneous read/write flash memory and other features.
Intel's New Strataflash Memory is a leading flash memory product.
Intel's page on Multilevel Cell Technology describes in detail how multi-bit flash memory works.
Hyundai offers A Flash Technology Overview.
TRW's Overview of Solid State Memory discusses solid state memory, but does not specifically address nonvolatile (including flash) memory.

 

  FlowChart

Top.gif (1083 bytes)

   A flowchart is a formalized graphic representation of a program logic sequence, work or manufacturing process, organization chart, or similar formalized structure. In computer programming, flowcharts were formerly used to describe each processing path in a program (the main program and various subroutines that could be branched to). Programmers were admonished to always flowchart their logic rather than carry it in their heads. With the advent of object-oriented programming (OOP) and visual development tools, the traditional program flowchart is much less frequently seen. However, there are new flowcharts that can be used for the data or class modeling that is used in object-oriented programming.

   Traditional program flowcharting involves the use of simple geometric symbols to represent a process (a rectangle), a decision (a diamond), or an I/O process (a symbol looking something like the home plate in baseball). These symbols are defined in ANSI x 3.5 and ISO 1028.

 

Selected Links
Patton & Patton is a company that specializes in making and selling all kinds of flowcharts.

 

  FPU

Top.gif (1083 bytes)

   An FPU (floating point unit), also known as a numeric coprocessor, is a microprocessor or special circuitry in a more general microprocessor that manipulates numbers more quickly than the basic microprocessor your computer uses. It does so by having a special set of instructions that focus entirely on large mathematical operations. A floating point unit is often built into today's personal computers, but it is needed only for special applications such as graphic image processing or display. Personal computers that don't have floating point units can sometimes handle software that requires them by installing a floating point emulator.

   Floating point numbers are numbers that are carried out to a certain decimal position (such as 2.17986). They are stored in three parts: the sign (plus or minus), the significant or mantissa which is the digits that are meaningful, and the exponent or order of magnititude of the significant, which determines the place to which the decimal point floats. Floating point numbers are binary (expressed in powers of 2).

   Some software you might download from the World Wide Web, such as Macromedia's Shockwave, may require that your computer have a floating point unit. If it doesn't, you may be able to download an FPU emulator that will fool the software into thinking you have one.

 

Selected Links
Users with computers containing AMD's Nx586 microchips, for example, can download an FPU emulator at AMD's Toolbox page.

 

  Frame Rate

Top.gif (1083 bytes)

   In motion pictures, television, and in computer video displays, the frame rate is the number of frames or images that are projected or displayed per second. Frame rates are used in synchronizing audio and pictures, whether film, television, or video. In motion pictures and television, the frame rates are standardized by the Society of Motion Picture and Television Editors (SMPTE). SMPTE Time Code frame rates of 24, 25 and 30 frames per second are common, each having uses in different portions of the industry. The professional frame rate for motion pictures is 24 frames per second and, for television, 30 frames per second (in the U.S.).

   In computer video streams, the frame rate describes playback rates for AVI and QuickTime movies. The video playback rate for an AVI or QuickTime movie directly relates to the perceived smoothness of its playback. The higher the number of frames playing per second, the smoother the video playback appears to the user. Lower rates result in a choppy playback. (As a reference point, film uses 24 frames per second to allow the viewer to perceive smooth playback.) Several factors affect the actual frame rate you get on your computer. For example, your PC processor or graphics hardware may only be capable of playing 10-15 frames per second without acceleration.

   In developing motion pictures, television, and video, frame rate information is used as a reference for audio signals. The recorded signal includes information about location in time using a 24-hour clock, and individual frame numbers. This signal is used to synchronize multiple audio and video machines during the recording and editing process. Using a master synchronizing device, the operator can issue location commands from a central machine and have all slaved machine follow the master.

 

______________________________________________________________

Designed By Wessam Sherif, All Rights Reserved.