0%

18-letter words containing r, o, t, i, n, g

  • 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.
  • front organization — business: cover-up
  • fulminating powder — powder that explodes by percussion.
  • functional program — (language)   A program employing the functional programming approach or written in a functional language.
  • funding operations — the conversion of government floating stock or short-term debt into holdings of long-term bonds
  • gamma distribution — a continuous two-parameter distribution from which the chi-square and exponential distributions are derived, written Gamma (α. β), where α and β are greater than zero, and defined in terms of the gamma function
  • 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)
  • gastroenterologist — the study of the structure, functions, and diseases of digestive organs.
  • generating station — a power station
  • genetic algorithms — genetic algorithm
  • gensym corporation — (company)   A company that supplies software and services for intelligent operations management. Common applications include quality management, process optimisation, dynamic scheduling, network management, energy and environmental management, and process modelling and simulation. Their products include G2.
  • geodetic surveying — the surveying of the earth's surface, making allowance for its curvature and giving an accurate framework for smaller-scale surveys
  • germline insertion — the insertion of cloned genes into the egg or sperm cell of an organism, using a gene transfer technique, in order to perpetuate a desired trait in its descendants, as pest-resistance in a crop plant.
  • get one's irish up — of, relating to, or characteristic of Ireland, its inhabitants, or their language.
  • gilbert and george — a team of artists, Gilbert Proesch, Italian, born 1942, and George Passmore, British, born 1943: noted esp for their photomontages and performance works
  • glomerulonephritis — a kidney disease affecting the capillaries of the glomeruli, characterized by albuminuria, edema, and hypertension.
  • gnu superoptimiser — (GSO) A function sequence generator that uses an exhaustive generate-and-test approach to find the shortest instruction sequence for a given function. Written by Torbjorn Granlund <[email protected]> and Tom Wood. You have to tell the superoptimiser which function and which CPU you want to get code for. This is useful for compiler writers. FTP superopt-2.2.tar.Z from a GNU archive site. Generates code for DEC Alpha, SPARC, Intel 80386, 88000, RS/6000, 68000, 29000 and Pyramid (SP, AP and XP).
  • go down in history — If someone or something goes down in history, people in the future remember them because of particular actions that they have done or because of particular events that have happened.
  • going to jerusalem — musical chairs.
  • golden gate bridge — a bridge connecting N California with San Francisco peninsula. 4200-foot (1280-meter) center span.
  • golden opportunity — perfect chance
  • good samaritan law — a law that exempts from legal liability persons, sometimes only physicians, who give reasonable aid to strangers in grave physical distress.
  • government deficit — A government deficit is a situation in which a government spends more money than it has.
  • government housing — housing owned and managed by the federal or state government, which is rented out to tenants, esp as a form of affordable housing
  • grampian mountains — a mountain system of central Scotland, extending from the southwest to the northeast and separating the Highlands from the Lowlands. Highest peak: Ben Nevis, 1344 m (4408 ft)
  • granulation tissue — tissue formed in ulcers and in early wound healing and repair, composed largely of newly growing capillaries and so called from its irregular surface in open wounds; proud flesh.
  • gravitational lens — a heavy, dense body, as a galaxy, that lies along our line of sight to a more distant object, as a quasar, and whose gravitational field refracts the light of that object, splitting it into multiple images as seen from the earth.
  • gravitational mass — the mass of a body as measured by its gravitational attraction for other bodies.
  • gravitational pull — force of gravity
  • gravitational wave — (in general relativity) a propagating wave of gravitational energy produced by accelerating masses, especially during catastrophic events, as the gravitational collapse of massive stars.
  • great expectations — a novel (1861) by Charles Dickens.
  • grosse pointe park — a city in SE Michigan, near Detroit.
  • gyromagnetic ratio — the ratio of the magnetic moment of a rotating charged particle to its angular momentum.
  • helicopter gunship — military attack helicopter
  • herringbone stitch — a type of cross-stitch in embroidery similar to the catch stitch in sewing, consisting of an overlapped V -shaped stitch that when worked in a continuous pattern produces a twill-weave effect.
  • horizontal tasting — a tasting of wines from the same year but from different vineyards, producers, etc.
  • houghton-le-spring — a town in N England, in Sunderland unitary authority, Tyne and Wear: coal-mining. Pop: 36 746 (2001)
  • human rights group — a group that campaigns for human rights
  • hungarian notation — (language, convention)   A linguistic convention requiring one or more letters to be added to the start of variable names to denote scope and/or type. Hungarian Notation is mainly confined to Microsoft Windows programming environments, such as Microsoft C, C++ and Visual Basic. It was originally devised by Charles Simonyi, a Hungarian, who was a senior programmer at Microsoft for many years. He disliked the way that names in C programs gave no clue as to the type, leading to frequent programmer errors. According to legend, fellow programmers at Microsoft, on seeing the convoluted, vowel-less variable names produced by his scheme, said, "This might as well be in Greek - or even Hungarian!". They made up the name "Hungarian notation" (possibly with "reverse Polish notation" in mind). Hungarian Notation is not really necessary when using a modern strongly-typed language as the compiler warns the programmer if a variable of one type is used as if it were another type. It is less useful in object-oriented programming languages such as C++, where many variables are going to be instances of classes and so begin with "obj". In addition, variable names are essentially only comments, and thus are just as susceptible to becoming out-of-date and incorrect as any other comment. For example, if a signed short int becomes an unsigned long int, the variable name, and every use of it, should be changed to reflect its new type. A variable's name should describe the values it holds. Type and scope are aspects of this, but Hungarian Notation overemphasises their importance by allocating so much of the start of the name to them. Furthermore, type and scope information can be found from the variable's declaration. Ironically, this is particularly easy in the development environments in which Hungarian Notation is typically used.
  • ignition interlock — interlock (def 10).
  • imaginary operator — An imaginary operator is the part of a complex number that defines the magnitude of the part of the complex number at right angles to the real number part.
  • in one's own right — in accordance with what is good, proper, or just: right conduct.
  • in the grip of sth — If a person, group, or place is in the grip of something, they are being severely affected by it.
  • induction training — training intended to enable new staff and recruits to do their work
  • inquisitor-general — the head of the Spanish court of Inquisition
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?