0%

18-letter words containing g, o, m

  • common wintergreen — a plant (Pyrola minor) of temperate and arctic regions, having rounded leaves and small pink globose flowers: family Pyrolaceae
  • 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
  • community policing — Community policing is a system in which policemen work only in one particular area of the community, so that everyone knows them.
  • companion planting — the cultivation of different types of plants in close proximity so as to benefit each other, as planting a deer-repellent plant in a flower garden.
  • 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
  • criminal profiling — the analysis of a person's psychological and behavioural characteristics, so as to assess whether they are likely to have committed a crime under investigation
  • 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.
  • cushing's syndrome — a medical condition characterized by obesity, hypertension, excessive hair growth, etc., caused by an overactive adrenal gland or large doses of corticosteroids
  • degrees of freedom — the number of independent variables entering into a statistical measure or frequency distribution
  • 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
  • division algorithm — the theorem that an integer can be written as the sum of the product of two integers, one a given positive integer, added to a positive integer smaller than the given positive integer. Compare Euclidean algorithm.
  • 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.
  • don't get me wrong — You say 'Don't get me wrong' when you want to make sure that someone does not get an incorrect idea about what you are doing or saying, or about why you are doing or saying it.
  • 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.
  • dynamic psychology — any system of psychology that emphasizes the interaction between different motives, emotions, and drives
  • easy come, easy go — You use easy come, easy go to indicate that the person you are talking about does not care much about money and possessions.
  • economic geography — a branch of geography that deals with the relation of physical and economic conditions to the production and utilization of raw materials and their manufacture into finished products.
  • eigendecomposition — (linear algebra) The factorization of a matrix into a canonical form, whereby the matrix is represented in terms of its eigenvalues and eigenvectors.
  • eighty-column mind — (abuse)   The sort said to be possessed by persons for whom the transition from punched card to paper tape was traumatic (nobody has dared tell them about disks yet). It is said that these people, including (according to an old joke) the founder of IBM, will be buried "face down, 9-edge first" (the 9-edge being the bottom of the card). This directive is inscribed on IBM's 1402 and 1622 card readers and is referenced in a famous bit of doggerel called "The Last Bug", the climactic lines of which are as follows: He died at the console Of hunger and thirst. Next day he was buried, Face down, 9-edge first. The eighty-column mind is thought by most hackers to dominate IBM's customer base and its thinking. See fear and loathing, card walloper.
  • electrocardiograms — Plural form of electrocardiogram.
  • electrocorticogram — a record of brain waves obtained by placing electrodes directly on the surface of the exposed cerebral cortex
  • 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.
  • 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
  • endowment mortgage — an arrangement whereby a person takes out a mortgage and pays the capital repayment instalments into a life assurance policy and only the interest to the mortgagee during the term of the policy. The loan is repaid by the policy either when it matures or on the prior death of the policyholder
  • energy consumption — amount of energy used
  • environment agency — an official agency providing information on environmental issues, esp rivers, flooding and pollution
  • ethnomethodologist — A person engaged in ethnomethodology.
  • ethnomusicological — Relating to or pertaining to ethnomusicology.
  • 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).
  • euglenoid movement — the expansion and contraction of the cell body of various flagellates
  • exchange programme — an arrangement in which people from different countries visit each other's country, perhaps to strengthen links between them or to improve foreign language skills
  • exercise programme — a programme detailing a range of physical exercises and the amount of time each exercise should be performed, used especially in gymnasiums, where they are typically tailored to individuals' needs
  • farm the long acre — to graze cows on the verge of a road
  • federal government — pertaining to or of the nature of a union of states under a central government distinct from the individual governments of the separate states, as in federal government; federal system.
  • flower arrangement — floral display
  • 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.
  • foreign investment — investment from foreign countries
  • forget-me-not blue — a shade of blue similar to the shade of the flowers of a forget-me-not
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?