0%

18-letter words containing t, r, i, g, e

  • distracted driving — driving a vehicle while engaging in an activity that has the potential to distract the driver from the task of driving: Bans on cell phone use in cars will help to reduce the dangers of distracted driving.
  • divergent thinking — thinking in an unusual and unstereotyped way, e.g. to generate several possible solutions to a problem
  • dna fingerprinting — the use of a DNA probe for the identification of an individual, as for the matching of genes from a forensic sample with those of a criminal suspect.
  • do a roaring trade — If someone does a roaring trade in a type of goods, they sell a lot of them.
  • dragline excavator — a power shovel that operates by being dragged by cables at the end of an arm or jib: used for quarrying, opencast mining, etc
  • dramatic monologue — a poetic form in which a single character, addressing a silent auditor at a critical moment, reveals himself or herself and the dramatic situation.
  • dressing table set — a set including a hairbrush, mirror and comb, often with silver backs
  • drinking chocolate — sweetened cocoa powder
  • drug-eluting stent — A drug-eluting stent is a tube placed into a blocked artery that slowly releases a drug to prevent another blockage in the artery.
  • duty-free shopping — the making of duty-free purchases
  • dwarf storage unit — (humour)   (DSU) An IBM term for a cupboard.
  • eastern algonquian — a subgroup of the Algonquian language family, comprising the languages spoken aboriginally from Nova Scotia to northeastern North Carolina.
  • eighty-twenty rule — (programming)   The program-design version of the law of diminishing returns. The 80/20 rule says that roughly 80% of the problem can be solved with 20% of the effort that it would take to solve the whole problem. For example, parsing e-mail addresses in "From:" lines in e-mail messages is notoriously difficult if you follow the RFC 2822 specification. However, about 60% of actual "From:" lines are in the format "From: Their Name <[email protected]>", with a far more constrained idea of what can be in "user" or "host" than in RFC 2822. Another 25% just add double-quotes around "Their Name". Matching just those two patterns would thus cover 85% of "From:" lines, with a tiny portion of the code required to fully implement RFC2822. (Adding support for "From: [email protected]" and "From: [email protected] (Their Name) " brings coverage to almost 100%, leaving only really baroque things that RFC-2822 permits, like "From: Pete(A wonderful \) chap)
  • electoral register — An electoral register is an official list of all the people who have the right to vote in an election.
  • electric discharge — electricity emitted
  • electrocardiograms — Plural form of electrocardiogram.
  • electrocardiograph — A machine used for electrocardiography.
  • electrocorticogram — a record of brain waves obtained by placing electrodes directly on the surface of the exposed cerebral cortex
  • electronic banking — the transfer of money between financial institutions through an exchange of electronic signals over a network
  • electronic editing — editing of a sound or vision tape recording by electronic rerecording rather than by physical cutting
  • electronic meeting — (messaging)   The use of a network of personal computers to improve communication that takes place in a meeting. Electronic meetings are effective with as few as two participants and with over 100 participants. Participants can be face-to-face in a meeting room or distributed around the world. They may all be participating at the same time or different times.
  • electronic tagging — Electronic tagging is a system in which a criminal or suspected criminal has an electronic device attached to them which enables the police to know if they leave a particular area.
  • electroretinograms — Plural form of electroretinogram.
  • emergent evolution — the doctrine that, in the course of evolution, some entirely new properties, such as life and consciousness, appear at certain critical points, usually because of an unpredictable rearrangement of the already existing entities
  • energy consumption — amount of energy used
  • environment agency — an official agency providing information on environmental issues, esp rivers, flooding and pollution
  • equinoctial spring — either of the two highest spring tides that occur at the equinoxes
  • euclid's algorithm — (algorithm)   (Or "Euclidean Algorithm") An algorithm for finding the greatest common divisor (GCD) of two numbers. It relies on the identity gcd(a, b) = gcd(a-b, b) To find the GCD of two numbers by this algorithm, repeatedly replace the larger by subtracting the smaller from it until the two numbers are equal. E.g. 132, 168 -> 132, 36 -> 96, 36 -> 60, 36 -> 24, 36 -> 24, 12 -> 12, 12 so the GCD of 132 and 168 is 12. This algorithm requires only subtraction and comparison operations but can take a number of steps proportional to the difference between the initial numbers (e.g. gcd(1, 1001) will take 1000 steps).
  • evolution strategy — (ES) A kind of evolutionary algorithm where individuals (potential solutions) are encoded by a set of real-valued "object variables" (the individual's "genome"). For each object variable an individual also has a "strategy variable" which determines the degree of mutation to be applied to the corresponding object variable. The strategy variables also mutate, allowing the rate of mutation of the object variables to vary. An ES is characterised by the population size, the number of offspring produced in each generation and whether the new population is selected from parents and offspring or only from the offspring. ES were invented in 1963 by Ingo Rechenberg, Hans-Paul Schwefel at the Technical University of Berlin (TUB) while searching for the optimal shapes of bodies in a flow.
  • far eastern region — former name of Khabarovsk.
  • farewell-to-spring — a slender, showy plant, Clarkia amoena, of the evening primrose family, native to western North America, having satiny, cup-shaped, lilac-crimson or reddish-pink flowers and roundish fruit.
  • fatty degeneration — deterioration of the cells of the body, accompanied by the formation of fat globules within the diseased cells.
  • feeping creaturism — /fee'ping kree"ch*r-izm/ A deliberate spoonerism for creeping featurism, meant to imply that the system or program in question has become a misshapen creature of hacks. This term isn"t really well defined, but it sounds so neat that most hackers have said or heard it. It is probably reinforced by an image of terminals prowling about in the dark making their customary noises.
  • floating underflow — underflow
  • floating-rate note — a eurobond, often issued as a negotiable bearer bond, that has a floating rate of interest
  • for the time being — the system of those sequential relations that any event has to any other, as past, present, or future; indefinite and continuous duration regarded as that in which events succeed one another.
  • fore-edge painting — a technique of painting a picture on the fore edge of a book, often in such a manner that only when the pages are slightly fanned the picture is revealed.
  • foreign investment — investment from foreign countries
  • foreign-trade zone — free port (def 1).
  • forgive and forget — be reconciled
  • foundation garment — an undergarment, as a girdle or corset, worn by women to support or give shape to the contours of the body.
  • fragmentation bomb — a bomb designed to break into many small, high-velocity fragments when detonated.
  • fringe-toed lizard — an iguanid lizard, Uma notata, of sandy deserts of the western U.S. and Mexico, having a wedge-shaped snout and toes fringed with long, pointed scales.
  • fulminating powder — powder that explodes by percussion.
  • funding operations — the conversion of government floating stock or short-term debt into holdings of long-term bonds
  • garbage collection — (programming)   (GC) The process by which dynamically allocated storage is reclaimed during the execution of a program. The term usually refers to automatic periodic storage reclamation by the garbage collector (part of the run-time system), as opposed to explicit code to free specific blocks of memory. Automatic garbage collection is usually triggered during memory allocation when the amount free memory falls below some threshold or after a certain number of allocations. Normal execution is suspended and the garbage collector is run. There are many variations on this basic scheme. Languages like Lisp represent expressions as graphs built from cells which contain pointers and data. These languages use automatic dynamic storage allocation to build expressions. During the evaluation of an expression it is necessary to reclaim space which is used by subexpressions but which is no longer pointed to by anything. This reclaimed memory is returned to the free memory pool for subsequent reallocation. Without garbage collection the program's memory requirements would increase monotonically throughout execution, possibly exceeding system limits on virtual memory size. The three main methods are mark-sweep garbage collection, reference counting and copying garbage collection. See also the AI koan about garbage collection.
  • garden loosestrife — any of various plants belonging to the genus Lysimachia, of the primrose family, having clusters of usually yellow flowers, as L. vulgaris (garden loosestrife) or L. quadrifolia (whorled loosestrife)
  • gas-discharge tube — any tube in which an electric discharge takes place through a gas
  • gastroenterologist — the study of the structure, functions, and diseases of digestive organs.
  • geiger-muller tube — a tube functioning as an ionization chamber within a Geiger counter.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?