0%

18-letter words containing u, t, g, a, r

  • dermot macmurrough — ?1110–71, king of Leinster, who, by enlisting the support of the English to win back his kingdom, was responsible for the English conquest of Ireland
  • digital multimeter — (electronics)   (DMM) A peice of test equipment used for measuring voltage, current, resistance, and possibly other electircal quantities and displaying the value in number form.
  • digital signatures — digital signature
  • 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.
  • drug on the market — Pharmacology. a chemical substance used in the treatment, cure, prevention, or diagnosis of disease or used to otherwise enhance physical or mental well-being.
  • 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.
  • engelbart, douglas — Douglas Engelbart
  • 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.
  • fall to the ground — (of a plan, theory, etc) to be rendered invalid, esp because of lack of necessary information
  • 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.
  • fibrocartilaginous — a type of cartilage having a large number of fibers.
  • floating underflow — underflow
  • foundation garment — an undergarment, as a girdle or corset, worn by women to support or give shape to the contours of the body.
  • fracture toughness — The fracture toughness of a material is how likely it is to resist fracture.
  • free-range poultry — poultry kept in natural nonintensive conditions
  • fulminating powder — powder that explodes by percussion.
  • fuming nitric acid — a colorless, yellowish, or brownish fuming corrosive liquid, usually prepared from nitric acid by the addition of excess nitrogen dioxide: used in organic synthesis for nitration, and as an oxidizer in liquid propellants for rockets.
  • 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
  • gas-discharge tube — any tube in which an electric discharge takes place through a gas
  • gastroduodenostomy — See under gastroenterostomy.
  • get the upper hand — gain advantage
  • gettysburg address — the notable short speech made by President Lincoln on November 19, 1863, at the dedication of the national cemetery at Gettysburg, Pa.
  • go for the jugular — Anatomy. of or relating to the throat or neck. noting or pertaining to any of certain large veins of the neck, especially one (external jugular vein) collecting blood from the superficial parts of the head or one (internal jugular vein) collecting blood from within the skull.
  • going to jerusalem — musical chairs.
  • graduated cylinder — a narrow, cylindrical container marked with horizontal lines to represent units of measurement and used to precisely measure the volume of liquids.
  • 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)
  • grandfather clause — U.S. History. a clause in the constitutions of some Southern states after 1890 intended to permit whites to vote while disfranchising blacks: it exempted from new literacy and property qualifications for voting those men entitled to vote before 1867 and their lineal descendants.
  • granulated surface — a roughened surface
  • 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 pull — force of gravity
  • greater roadrunner — either of two large terrestrial cuckoos of the genus Geococcyx of arid regions of the western U.S., Mexico, and Central America, especially G. californianus (greater roadrunner)
  • gulf stream system — a major ocean-current system consisting of the Gulf Stream and the Florida and North Atlantic currents.
  • gulliver's travels — a social and political satire (1726) by Jonathan Swift, narrating the voyages of Lemuel Gulliver to four imaginary regions: Lilliput, Brobdingnag, Laputa, and the land of the Houyhnhnms.
  • haulage contractor — a person or firm that transports goods by lorry
  • heart-lung machine — a device through which blood is shunted temporarily for oxygenation during surgery, while the heart or a lung is being repaired.
  • 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.
  • induction training — training intended to enable new staff and recruits to do their work
  • industrial hygiene — the science that assesses, controls, and prevents occupational factors or sources of stress in the workplace that may significantly affect the health and well-being of employees or of the community in general
  • inquisitor-general — the head of the Spanish court of Inquisition
  • instrument landing — an aircraft landing accomplished by use of gauges on the instrument panel and ground-based radio equipment, with limited reference to outside visual signals.
  • integrated circuit — a circuit of transistors, resistors, and capacitors constructed on a single semiconductor wafer or chip, in which the components are interconnected to perform a given function. Abbreviation: IC.
  • integrated studies — a course that includes a number of subjects and is organized by theme
  • intercartilaginous — (anatomy) Within cartilage.
  • johannes gutenberg — Johannes [yoh-hahn-uh s] /yoʊˈhɑn əs/ (Show IPA), (Johann Gensfleisch) c1400–68, German printer: credited with invention of printing from movable type.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?