0%

18-letter words that end in m

  • actual bodily harm — Actual bodily harm is a criminal offence in which someone gives another person a minor injury.
  • ailanthus silkworm — a green silkworm, Samia walkeri, introduced into the U.S. from China, that feeds on the leaves of the ailanthus.
  • andrew file system — (operating system, storage)   (AFS) The distributed file system of the Andrew Project, adopted by the OSF as part of their Distributed Computing Environment.
  • anti-commercialism — the principles, practices, and spirit of commerce.
  • anti-scholasticism — narrow adherence to traditional teachings, doctrines, or methods.
  • 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
  • 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.
  • asymptotic freedom — a property of the force between quarks, according to quantum chromodynamics, such that they behave almost like free particles when they are close together within a hadron.
  • backus normal form — Backus-Naur Form
  • ballistic pendulum — a device consisting of a large mass hung from a horizontal bar by two rods, used to measure the velocity of an object, as a bullet, by retaining the object upon impact, its velocity being a function of the displacement of the mass.
  • ballistocardiogram — a tracing made by a ballistocardiograph
  • beefsteak mushroom — an edible bracket fungus, Fistulina hepatica, that grows on trees and can rot the heartwood of living oaks and chestnuts.
  • chronic alcoholism — long-term alcohol addiction
  • circular dichroism — selective absorption of one of the two possible circular polarizations of light.
  • circulating medium — currency serving as a medium of exchange
  • circulatory system — the system concerned with the transport of blood and lymph, consisting of the heart, blood vessels, lymph vessels, etc
  • citizen journalism — the involvement of non-professionals in reporting news, esp in blogs and other websites
  • complementarianism — The doctrine that genders in a society should have complementary roles.
  • compressor program — a computer program that compresses data
  • conceptual realism — the doctrine that universals have real and independent existence.
  • 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.
  • consumer terrorism — the practice of introducing dangerous substances to foodstuffs or other consumer products, esp to extort money from the manufacturers
  • continental system — French system.
  • counterculturalism — The counterculture movement or lifestyle.
  • creeping featurism — (jargon)   /kree'ping fee'chr-izm/ (Or "feature creep") A systematic tendency to load more chrome and features onto systems at the expense of whatever elegance they may have possessed when originally designed. "The main problem with BSD Unix has always been creeping featurism." More generally, creeping featurism is the tendency for anything to become more complicated because people keep saying "Gee, it would be even better if it had this feature too". The result is usually a patchwork because it grew one ad-hoc step at a time, rather than being planned. Planning is a lot of work, but it's easy to add just one extra little feature to help someone, and then another, and another, .... When creeping featurism gets out of hand, it's like a cancer. Usually this term is used to describe computer programs, but it could also be said of the federal government, the IRS 1040 form, and new cars. A similar phenomenon sometimes afflicts conscious redesigns; see second-system effect. See also creeping elegance.
  • cultural pluralism — a condition in which minority groups participate fully in the dominant society, yet maintain their cultural differences.
  • cunninghame graham — R(obert) B(ontine). 1852–1936, Scottish traveller, writer, and politician, noted for his essays and short stories: first president (1928) of the Scottish Nationalist Party
  • deanthropomorphism — the ridding of philosophy or religion of anthropomorphic beliefs and doctrines.
  • 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).
  • departure platform — a raised area at a railway station from which passengers can board trains prior to their departing
  • destruct mechanism — a mechanism that causes the destruction of a rocket or missile when activated
  • development system — a computer system, including hardware and software, that is specifically designed to aid in the development of software and interfaces
  • diastereoisomerism — (chemistry) Any form of stereoisomerism other than enantiomerism.
  • didot point system — a Continental system of measurement for type, based on a unit of 0.0148 inches (0.3759 mm).
  • distributed system — A collection of (probably heterogeneous) automata whose distribution is transparent to the user so that the system appears as one local machine. This is in contrast to a network, where the user is aware that there are several machines, and their location, storage replication, load balancing and functionality is not transparent. Distributed systems usually use some kind of client-server organisation. Distributed systems are considered by some to be the "next wave" of computing.
  • 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 name system — (networking)   (DNS) A general-purpose distributed, replicated, data query service chiefly used on Internet for translating hostnames into Internet addresses. Also, the style of hostname used on the Internet, though such a name is properly called a fully qualified domain name. DNS can be configured to use a sequence of name servers, based on the domains in the name being looked for, until a match is found. The name resolution client (e.g. Unix's gethostbyname() library function) can be configured to search for host information in the following order: first in the local hosts file, second in NIS and third in DNS. This sequencing of Naming Services is sometimes called "name service switching". Under Solaris is configured in the file /etc/nsswitch.conf. DNS can be queried interactively using the command nslookup. It is defined in STD 13, RFC 1034, RFC 1035, RFC 1591.
  • electrocorticogram — a record of brain waves obtained by placing electrodes directly on the surface of the exposed cerebral cortex
  • entrepreneurialism — The spirit or state of acting in an entrepreneurial manner.
  • 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).
  • fascicular cambium — cambium that develops within the vascular bundles, producing secondary xylem and phloem.
  • 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.
  • fitzwilliam museum — a museum, attached to Cambridge University and founded in 1816, noted esp for its paintings and collections devoted to the applied arts
  • flotsam and jetsam — the part of the wreckage of a ship and its cargo found floating on the water. Compare jetsam, lagan.
  • four-color problem — the problem, solved in 1976, of proving the theorem that any geographic map can be colored using only four colors so that no connected countries with a common boundary are colored the same color.
  • fourth normal form — database normalisation
  • frequency spectrum — The frequency spectrum of an electrical signal is the distribution of the amplitudes and phases of each frequency component against frequency.
  • from top to bottom — highest point to lowest
  • functional program — (language)   A program employing the functional programming approach or written in a functional language.

On this page, we collect all 18-letter words ending in letter M. It’s easy to find right word with a certain length. It is the easiest way to find 18-letter word that ends in M 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?