0%

18-letter words containing a, g, m, o, e

  • (all) in good time — If you tell someone that something will happen in good time or all in good time, you are telling them to be patient because it will happen eventually.
  • absolute magnitude — the apparent magnitude a given star would have if it were situated at a distance of 10 parsecs (32.6 light years) from the earth
  • accounting machine — a machine for performing bookkeeping functions, as arithmetic operations or vertical and horizontal tabulations.
  • adobe type manager — (text, tool, product)   (ATM) Software that produces PostScript outline fonts on screen and paper. There are versions that run under Microsoft Windows and on the Macintosh. ATM can do hinting, multiple master and anti-aliasing.
  • agammaglobulinemia — a condition of the blood, either congenital or acquired, in which there is near or complete absence of gamma globulin and a failure of the body to form antibodies, resulting in a frequent occurrence of infectious disease.
  • age discrimination — discrimination against older people, especially by employers
  • agri-environmental — of or relating to the impact of agricultural practices on the environment
  • algebraic geometry — the study of sets that are defined by algebraic equations.
  • anti-miscegenation — marriage or cohabitation between two people from different racial groups, especially, in the U.S., between a black person and a white person: In 1968 the Supreme Court ruled unanimously that state laws prohibiting miscegenation were unconstitutional.
  • antiferromagnetism — the phenomenon exhibited by substances that resemble paramagnetic substances in the value of their relative permeability but that behave like ferromagnetic substances when their temperature is varied
  • arrest of judgment — a stay of proceedings after a verdict, on the grounds of error or possible error
  • assignment problem — (mathematics, algorithm)   (Or "linear assignment") Any problem involving minimising the sum of C(a, b) over a set P of pairs (a, b) where a is an element of some set A and b is an element of set B, and C is some function, under constraints such as "each element of A must appear exactly once in P" or similarly for B, or both. For example, the a's could be workers and the b's projects. The problem is "linear" because the "cost function" C() depends only on the particular pairing (a, b) and is independent of all other pairings.
  • assortative mating — the reproductive pairing of individuals that have more traits in common than would likely be the case if mating were random (contrasted with disassortative mating).
  • atmospheric engine — an early form of single-acting engine in which the power stroke is provided by atmospheric pressure acting upon a piston in an exhausted cylinder.
  • awnless bromegrass — Hungarian bromegrass.
  • balanced computing — (jargon)   Matching computer tools to job activities so that the computer system structure parallels the organisation structure and work functions. Both personal computers and employees operate in a decentralised environment with monitoring of achievement of management objectives from centralised corporate systems.
  • basal conglomerate — a conglomerate deposited on an erosion surface and constituting the bottom layer of a stratigraphic series.
  • be having a moment — If something or someone is having a moment, they are successful or popular at the present time.
  • be in good company — If you say that someone is in good company, you mean that they should not be ashamed of a mistake or opinion, because some important or respected people have made the same mistake or have the same opinion.
  • be the image of sb — If you are the image of someone else, you look very much like them.
  • beggar-my-neighbor — beggar-your-neighbor.
  • bernard montgomeryBernard Law, 1st Viscount Montgomery of Alamein ("Monty") 1887–1976, British field marshal: World War II commander of British 8th Army in Africa and Europe.
  • biomedical package — (language, library, statistics)   (BMDP) A statistical language and library of over forty statistical routines developed in 1961 at UCLA, Health Sciences Computing Facility under Dr. Wilford Dixon. BMDP was first implemented in Fortran for the IBM 7090. Tapes of the original source were distributed for free all over the world. BMDP is the second iteration of the original BIMED programs. It was developed at UCLA Health Sciences Computing facility, with NIH funding. The "P" in BMDP originally stood for "parameter" but was later changed to "package". BMDP used keyword parameters to defined what was to be done rather than the fixed card format used by original BIMED programs. BMDP supports many statistical funtions: simple data description, survival analysis, ANOVA, multivariate analyses, regression analysis, and time series analysis. BMDP Professional combines the full suite of BMDP Classic (Dynamic) release 7.0 with the BMDP New System 2.0 Windows front-end.
  • bloggs family, the — An imaginary family consisting of Fred and Mary Bloggs and their children. Used as a standard example in knowledge representation to show the difference between extensional and intensional objects. For example, every occurrence of "Fred Bloggs" is the same unique person, whereas occurrences of "person" may refer to different people. Members of the Bloggs family have been known to pop up in bizarre places such as the DEC Telephone Directory. Compare Mbogo, Dr. Fred.
  • cabinet government — parliamentary government.
  • carboxyhaemoglobin — haemoglobin coordinated with carbon monoxide, formed as a result of carbon monoxide poisoning. As carbon monoxide is bound in preference to oxygen, tissues are deprived of oxygen
  • categorial grammar — a theory that characterizes syntactic categories in terms of functions between classes of expressions. The basic classes are names (N) and sentences (S). Intransitive verbs are symbols for functions which take a name and yield a sentence (written S/N), adverbs form compound verbs from verbs (for example, run fast) and so are (S/N)/(S/N), etc
  • central government — the government of a state or country
  • chromolithographer — One engaged in chromolithography.
  • clobbering machine — pressure to conform with accepted standards
  • commanding officer — A commanding officer is an officer who is in charge of a military unit.
  • commercial college — a college providing tuition in commercial skills, such as shorthand and book-keeping
  • commodity exchange — an exchange where commodities are traded
  • commonwealth games — an event held every four years in which sportspeople from the countries of the Commonwealth compete
  • community language — a language spoken by members of a minority group or community within a majority language context
  • compartmentalizing — Present participle of compartmentalize.
  • compassion fatigue — the inability to react sympathetically to a crisis, disaster, etc, because of overexposure to previous crises, disasters, etc
  • complementary gene — one of a pair of genes, each from different loci, that together are required for the expression of a certain characteristic
  • compressor program — a computer program that compresses data
  • computer-generated — produced by a computer program
  • configuration item — (jargon)   Hardware or software, or an aggregate of both, which is designated by the project configuration manager (or contracting agency) for configuration management.
  • continental margin — the offshore zone, consisting of the continental shelf, slope, and rise, that separates the dry-land portion of a continent from the deep ocean floor.
  • counterprogramming — the practice of scheduling a program opposite another program, esp. a popular one, that appeals to a different kind of audience, as in placing a romantic film directed at women opposite a sports program mainly watched by men
  • cumulative scoring — a method of scoring in which the score of a partnership is taken as the sum of their scores on all hands played.
  • demorgan's theorem — (logic)   A logical theorem which states that the complement of a conjunction is the disjunction of the complements or vice versa. In symbols: not (x and y) = (not x) or (not y) not (x or y) = (not x) and (not y) E.g. if it is not the case that I am tall and thin then I am either short or fat (or both). The theorem can be extended to combinations of more than two terms in the obvious way. The same laws also apply to sets, replacing logical complement with set complement, conjunction ("and") with set intersection, and disjunction ("or") with set union. A (C) programmer might use this to re-write if (!foo && !bar) ... as if (!(foo || bar)) ... thus saving one operator application (though an optimising compiler should do the same, leaving the programmer free to use whichever form seemed clearest).
  • 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
  • determinate growth — growth of a plant stem that is terminated early by the formation of a bud
  • domain engineering — (systems analysis)   1. The development and evolution of domain specific knowledge and artifacts to support the development and evolution of systems in the domain. Domain engineering includes engineering of domain models, components, methods and tools and may also include asset management. 2. The engineering process of analysing and modelling a domain, designing and modelling a generic solution architecture for a product line within that domain, implementing and using reusable components of that architecture and maintaining and evolving the domain, architecture and implementation models. 3. A reuse-based approach to defining the scope (domain definition), specifying the structure (domain architecture) and building the Assets (requirements, designs, software code, documentation) for a class of systems, subsystems or applications. Domain engineering can include domain definition, domain analysis, developing the domain architecture domain implementation.
  • 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.

On this page, we collect all 18-letter words with A-G-M-O-E. It’s easy to find right word with a certain length. It is the easiest way to find 18-letter word that contains in A-G-M-O-E to use in Scrabble or Crossword puzzles

Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?