0%

21-letter words containing c, n, g

  • cultural anthropology — the branch of anthropology dealing with cultural as opposed to biological and racial features
  • cut-through switching — (networking)   The application of wormhole routing to packets in a packet switching system so that forwarding of a packet starts as soon as its destination is known, before the whole packet has arrived. Compare store and forward.
  • de-ontological ethics — the branch of ethics dealing with right action and the nature of duty, without regard to the goodness or value of motives or the desirability of the ends of any act.
  • deep scattering layer — any of the stratified zones in the ocean which reflect sound during echo sounding, usually composed of marine organisms which migrate vertically from c. 250 to 800 m (c. 820 to 2,625 ft)
  • dendrochronologically — By the use of, or with reference to dendrochronology.
  • devil's walking-stick — Hercules'-club (sense 1)
  • devil's-walking-stick — Hercules-club (def 2).
  • direct inward dialing — (communications)   (DID) A service offered by telephone companies which allows the last 3 or 4 digits of a phone number to be transmitted to the destination exchange. For example, a company could have 10 incoming lines, all with the number 234 000. If a caller dials 234 697, the call is sent to 234 000 (the company's exchange), and the digits 697 are transmitted. The company's exchange then routes the call to extension 697. This gives the impression of 1000 direct dial lines, whereas in fact there are only 10. Obviously, only 10 at a time can be used. This system is also used by fax servers. Instead of an exchange at the end of the 234 000 line, a computer running fax server software and fax modem cards uses the last three digits to identify the recipient of the fax. This allows 1000 people to have their own individual fax numbers, even though there is only one 'fax machine'.
  • disruptive technology — A disruptive technology is a new technology, such as computers and the Internet, which has a rapid and major effect on technologies that existed before.
  • duccio di buoninsegna — c1255–1319? Italian painter.
  • dynamic data exchange — (language)   (DDE, originally Dynamic Data Linking, DDL) A Microsoft Windows 3 hotlink protocol that allows application programs to communicate using a client-server model. Whenever the server (or "publisher") modifies part of a document which is being shared via DDE, one or more clients ("subscribers") are informed and include the modification in the copy of the data on which they are working.
  • 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.
  • electroencephalograms — Plural form of electroencephalogram.
  • electroencephalograph — A machine used for electroencephalography.
  • 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.
  • electronystagmography — A diagnostic test to record involuntary movements of the eye caused by a condition known as nystagmus. It can also be used to diagnose the cause of vertigo, dizziness or balance dysfunction by testing the vestibular system.
  • european space agency — an organization dedicated to space exploration with 18 European countries as members
  • faculty board meeting — a meeting of the governing body of a faculty
  • first-round financing — First round financing is the first time a new company raises money from investors.
  • food standards agency — the full form of FDA
  • foreground processing — a type of processing that supports interaction between interactive and batch operations
  • foreign correspondent — a correspondent, as for a periodical, assigned to send back articles and news dispatches from a foreign country for publication.
  • foreign exchange rate — the rate that specifies how much the currency of a nation is worth in terms of the currency of another nation
  • 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.
  • forward exchange rate — the exchange rate of a currency to be delivered at a later date
  • framing specification — A specification of the "protocol bits" that surround the "data bits" on a communications channel to allow the data to be "framed" into chunks, like start and stop bits in EIA-232. It allows a receiver to synchronize at points along the data stream.
  • franco-belgian system — French system.
  • 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
  • fuming sulphuric acid — a mixture of pyrosulphuric acid, H2S2O7, and other condensed acids, made by dissolving sulphur trioxide in concentrated sulphuric acid
  • game of cat and mouse — In a fight or contest, if one person plays cat and mouse, or a game of cat and mouse, with the other, the first person tries to confuse or deceive the second in order to defeat them.
  • garden of remembrance — an area of land containing cultivated plants, trees, etc, to commemorate the dead
  • gas analysis recorder — A gas analysis recorder is a device which samples, records, and analyses gas.
  • gastrohepatic omentum — lesser omentum.
  • 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.
  • geometric progression — a sequence of terms in which the ratio between any two successive terms is the same, as the progression 1, 3, 9, 27, 81 or 144, 12, 1, 1/12, 1/144.
  • get on someone's case — an instance of the occurrence, existence, etc., of something: Sailing in such a storm was a case of poor judgment.
  • get on someone's wick — to cause irritation to a person
  • get on the scoresheet — In football, rugby, and some other sports, if a player gets on the scoresheet, he or she scores one or more goals, tries, or points.
  • get one's breath back — When you get your breath back after doing something energetic, you start breathing normally again.
  • 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).
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?