0%

21-letter words containing c, l, i, n, e

  • eccles-jordan circuit — flip-flop
  • ecological succession — succession (def 6).
  • ecological-succession — the coming of one person or thing after another in order, sequence, or in the course of events: many troubles in succession.
  • educational sociology — the application of sociological principles and methods to the solution of problems in an educational system.
  • electric displacement — the electric flux density when an electric field exists in free space into which a dielectric is introduced
  • electric flux density — Electric flux density is electric flux passing through a unit area perpendicular to the direction of the flux.
  • electric polarization — Electric polarization is the type of polarization of electricity that occurs in a dielectric.
  • electromagnetic field — a field of force associated with a moving electric charge equivalent to an electric field and a magnetic field at right angles to each other and to the direction of propagation
  • electromagnetic pulse — a surge of electromagnetic radiation, esp one resulting from a nuclear explosion, which can disrupt electronic devices and, occasionally, larger structures and equipment
  • electronic publishing — Electronic publishing is the publishing of documents in a form that can be read on a computer, for example as a CD-ROM.
  • electronic typewriter — a keyboard machine for writing electromechanically in characters resembling print
  • emotional correctness — pressure on an individual to be seen to feel the same emotion as others
  • employee contribution — money contributed by an employee to his or her employer's pension fund
  • employer contribution — money contributed by an employer to his or her employee's pension fund
  • endoplasmic reticulum — an extensive intracellular membrane system whose functions include synthesis and transport of lipids and, in regions where ribosomes are attached, of proteins
  • enhanced oil recovery — any of several techniques that make it possible to recover more oil than can be obtained by natural pressure, such as the injection of fluid or gases into an oilfield to force more oil to the surface
  • enharmonic modulation — a change of key achieved by regarding a note in one key as an equivalent note in another. Thus E flat in the key of A flat could be regarded as D sharp in the key of B major
  • epidemic encephalitis — any type of widespread encephalitis caused by various viruses
  • faculty board meeting — a meeting of the governing body of a faculty
  • file allocation table — (file system)   (FAT) The component of an MS-DOS or Windows 95 file system which describes the files, directories, and free space on a hard disk or floppy disk. A disk is divided into partitions. Under the FAT file system each partition is divided into clusters, each of which can be one or more sectors, depending on the size of the partition. Each cluster is either allocated to a file or directory or it is free (unused). A directory lists the name, size, modification time and starting cluster of each file or subdirectory it contains. At the start of the partition is a table (the FAT) with one entry for each cluster. Each entry gives the number of the next cluster in the same file or a special value for "not allocated" or a special value for "this is the last cluster in the chain". The first few clusters after the FAT contain the root directory. The FAT file system was originally created for the CP/M[?] operating system where files were catalogued using 8-bit addressing. MS DOS's FAT allows only 8.3 filenames. With the introduction of MS-DOS 4 an incompatible 16-bit FAT (FAT16) with 32-kilobyte clusters was introduced that allowed partitions of up to 2 gigabytes. Microsoft later created FAT32 to support partitions larger than two gigabytes and pathnames greater that 256 characters. It also allows more efficient use of disk space since clusters are four kilobytes rather than 32 kilobytes. FAT32 was first available in OEM Service Release 2 of Windows 95 in 1996. It is not fully backward compatible with the 16-bit and 8-bit FATs. Compare: NTFS.
  • financial times index — one of the indexes of share prices produced by the Financial Times, especially the Financial Times Stock Exchange 100 Index
  • financial underwriter — A financial underwriter is an insurance employee working in financial underwriting.
  • flotation compartment — in a boat, an enclosed section filled with air or gas to give buoyancy
  • forensic anthropology — the branch of physical anthropology in which anthropological data, criteria, and techniques are used to determine the sex, age, genetic population, or parentage of skeletal or biological materials in questions of civil or criminal law.
  • fort lesley j. mcnair — a military reservation in SW Washington, D.C., on the Potomac River, SW of the Capitol.
  • fractional extraction — Fractional extraction is a process of extracting a liquid from a liquid, in which two solutes are separated, with one leaving in the extract and one in the raffinate.
  • franco-belgian system — French system.
  • fraudulent conversion — conversion committed with the intent to defraud
  • french foreign legion — a unit of the French Army formerly serving esp in French North African colonies. It is largely recruited from foreigners, with French senior officers
  • fuel injection engine — and engine with a system for introducing atomized liquid fuel under pressure directly into the combustion chambers of an internal-combustion engine without the use of a carburettor
  • full faith and credit — the obligation under Article IV of the U.S. Constitution for each state to recognize the public acts, records, and judicial proceedings of every other state.
  • functional dependency — (database)   Given a relation R (in a relational database), attribute Y of R is functionally dependent on attribute X of R and X of R functionally determines Y of R (in symbols R.X -> R.Y) if and only if each X in R has associated with it precisely one Y in R (at any one time). Attributes X and Y may be composite. This is very close to a function in the mathematical sense.
  • functional illiterate — a person with some basic education who still falls short of a minimum standard of literacy or whose reading and writing skills are inadequate to everyday needs.
  • functional imperative — a requirement for the survival of any social system, as communication, control of conflict, or socialization.
  • gas analysis recorder — A gas analysis recorder is a device which samples, records, and analyses gas.
  • geiger-muller counter — an instrument for detecting ionizing radiations, consisting of a gas-filled tube in which electric-current pulses are produced when the gas is ionized by radiation, and of a device to register these pulses: used chiefly to measure radioactivity.
  • general court-martial — a court-martial having the authority to try any offense against military law and to impose a sentence of dishonorable discharge or of death when provided by law.
  • generic type variable — (programming)   (Also known as a "schematic type variable"). Different occurrences of a generic type variable in a type expression may be instantiated to different types. Thus, in the expression let id x = x in (id True, id 1) id's type is (for all a: a -> a). The universal quantifier "for all a:" means that a is a generic type variable. For the two uses of id, a is instantiated to Bool and Int. Compare this with let id x = x in let f g = (g True, g 1) in f id This looks similar but f has no legal Hindley-Milner type. If we say f :: (a -> b) -> (b, b) this would permit g's type to be any instance of (a -> b) rather than requiring it to be at least as general as (a -> b). Furthermore, it constrains both instances of g to have the same result type whereas they do not. The type variables a and b in the above are implicitly quantified at the top level: f :: for all a: for all b: (a -> b) -> (b, b) so instantiating them (removing the quantifiers) can only be done once, at the top level. To correctly describe the type of f requires that they be locally quantified: f :: ((for all a: a) -> (for all b: b)) -> (c, d) which means that each time g is applied, a and b may be instantiated differently. f's actual argument must have a type at least as general as ((for all a: a) -> (for all b: b)), and may not be some less general instance of this type. Type variables c and d are still implicitly quantified at the top level and, now that g's result type is a generic type variable, any types chosen for c and d are guaranteed to be instances of it. This type for f does not express the fact that b only needs to be at least as general as the types c and d. For example, if c and d were both Bool then any function of type (for all a: a -> Bool) would be a suitable argument to f but it would not match the above type for f.
  • genetic amplification — an increase in the frequency of replication of a DNA segment.
  • girlfriend experience — a service provided by a prostitute that includes more personal activity, such as kissing, than provided traditionally by sex workers
  • give place to someone — to make room for or be superseded by someone
  • glacier national park — a national park in NW Montana: glaciers; lakes; forest reserve. 1534 sq. mi. (3970 sq. km).
  • grammatical inference — Deducing a grammar from given examples. Also known as "inductive inference" and recently as "computational learning".
  • guaranteed scheduling — (algorithm)   A scheduling algorithm used in multitasking operating systems that guarantees fairness by monitoring the amount of CPU time spent by each user and allocating resources accordingly.
  • heliocentric parallax — the apparent displacement of an observed object due to a change in the position of the observer.
  • hindu-arabic numerals — Arabic numeral.
  • homogeneous catalysis — Homogeneous catalysis is catalysis in which the catalyst takes part in the reaction that it increases.
  • homolosine projection — an equal-area projection of the world, distorting ocean areas in order to minimize the distortion of the continents.
  • hubble classification — a method of classifying galaxies depending on whether they are elliptical, spiral, barred spiral, or irregular
  • identical proposition — a proposition in which the subject and predicate have the same meaning, as, “That which is mortal is not immortal.”.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?